Fix gdk_window_get_geometry binding, patch by Thijs Vermeir, fixes bug
authorJürg Billeter <j@bitron.ch>
Sun, 1 Jun 2008 16:12:28 +0000 (16:12 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sun, 1 Jun 2008 16:12:28 +0000 (16:12 +0000)
2008-06-01  Jürg Billeter  <j@bitron.ch>

* vapi/packages/gdk-2.0/:

Fix gdk_window_get_geometry binding,
patch by Thijs Vermeir, fixes bug 536062

* vapi/gdk-2.0.vapi: regenerated

svn path=/trunk/; revision=1531

ChangeLog
THANKS
vapi/gdk-2.0.vapi
vapi/packages/gdk-2.0/gdk-2.0.metadata

index 01f68e2..f5e59b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2008-06-01  Jürg Billeter  <j@bitron.ch>
 
+       * vapi/packages/gdk-2.0/:
+
+       Fix gdk_window_get_geometry binding,
+       patch by Thijs Vermeir, fixes bug 536062
+
+       * vapi/gdk-2.0.vapi: regenerated
+
+2008-06-01  Jürg Billeter  <j@bitron.ch>
+
        * vala/valadelegate.vala:
        * vala/valasemanticanalyzer.vala:
 
diff --git a/THANKS b/THANKS
index 3edef36..71e91d0 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -44,6 +44,7 @@ Roberto Majadas
 Roland Hostettler
 Ross Burton
 Stéphan Kochen
+Thijs Vermeir
 Travis Watkins
 Vlad Grecescu
 Yaakov Selkowitz
index 5cfd78e..c105ab9 100644 (file)
@@ -1093,7 +1093,7 @@ namespace Gdk {
                public bool get_decorations (Gdk.WMDecoration decorations);
                public Gdk.EventMask get_events ();
                public void get_frame_extents (out Gdk.Rectangle rect);
-               public void get_geometry (int x, int y, int width, int height, int depth);
+               public void get_geometry (out int x, out int y, out int width, out int height, out int depth);
                public weak Gdk.Window get_group ();
                public void get_internal_paint_info (out weak Gdk.Drawable real_drawable, int x_offset, int y_offset);
                public int get_origin (out int x, out int y);
index 73eff3c..8e1ce93 100644 (file)
@@ -30,4 +30,8 @@ GdkWindowAttr is_value_type="1"
 GdkWindowClass common_prefix="GDK_"
 GdkWindowObject hidden="1"
 GdkWindowObjectClass hidden="1"
-
+gdk_window_get_geometry.x is_out="1"
+gdk_window_get_geometry.y is_out="1"
+gdk_window_get_geometry.width is_out="1"
+gdk_window_get_geometry.height is_out="1"
+gdk_window_get_geometry.depth is_out="1"