]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix g_main_current_source binding, patch by Zeeshan Ali Khattak, fixes bug
authorJürg Billeter <j@bitron.ch>
Mon, 15 Dec 2008 20:48:34 +0000 (20:48 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 15 Dec 2008 20:48:34 +0000 (20:48 +0000)
2008-12-15  Jürg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vapi:

Fix g_main_current_source binding, patch by Zeeshan Ali Khattak,
fixes bug 563349

svn path=/trunk/; revision=2162

ChangeLog
vapi/glib-2.0.vapi

index cf89e64333f4d348e6de8b2dcba2115f85a41b47..e8ba6922f4f9301d3a009e729721e8ed4cdd4ad8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-12-15  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/glib-2.0.vapi:
+
+       Fix g_main_current_source binding, patch by Zeeshan Ali Khattak,
+       fixes bug 563349
+
 2008-12-15  Jürg Billeter  <j@bitron.ch>
 
        * vapi/packages/gstreamer-0.10/:
index b0315888e083287cc086634df11c7ffb130f56be..4242e67adcfa90da8816e99ae5c1afb3912ba288 100644 (file)
@@ -1058,7 +1058,8 @@ namespace GLib {
                public void add_poll (ref PollFD fd, int priority);
                public void remove_poll (ref PollFD fd);
                public int depth ();
-               public weak Source current_source ();
+               [CCode (cname = "g_main_current_source")]
+               public static weak Source current_source ();
        }
        
        public static delegate int PollFunc (PollFD[] ufds, uint nfsd, int timeout_);