[Vala] Vala type conversion issue
- From: Adam Kovari <kovariadam gmail com>
- To: vala-list gnome org
- Subject: [Vala] Vala type conversion issue
- Date: Sat, 1 Aug 2009 21:28:49 +0200
Hello,
i'm a newbie to Vala language and i really like it, unfortunatelly i
came to this compile issue, which i cannot resolve only by myself.
this code:
Gtk.propagate_event(this, (Gdk.Event) event);
translates into this C-equivalent:
gtk_propagate_event ((GtkWidget*) self, (GdkEvent*) (*event));
"event" is a type of Gdk.EventButton.
My intention is to get:
gtk_propagate_event ((GtkWidget*) self, (GdkEvent*) event);
Because current code cannot be compiled, here is the error message:
error: cannot convert to a pointer type
My question is, how to convert Gdk.EventButton instance to Gdk.Event
instance properly?
Thanks
--
---
Adam Kovari(mailto:kovariadam gmail com)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]