]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038
authorJürg Billeter <j@bitron.ch>
Sat, 17 Jan 2009 23:02:49 +0000 (23:02 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sat, 17 Jan 2009 23:02:49 +0000 (23:02 +0000)
2009-01-18  Jürg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vapi:

Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038

svn path=/trunk/; revision=2383

ChangeLog
vapi/glib-2.0.vapi

index 306b6c05c811e8ece76d21349cee231b30a998ba..4566257be7b678b3f1e0900b78c025246e0d35d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-18  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/glib-2.0.vapi:
+
+       Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038
+
 2009-01-17  Jürg Billeter  <j@bitron.ch>
 
        * gobject/valaccodemethodcallmodule.vala:
index 06d7415f1563bee5e554b95c896614e897ab4a18..967601ce19c4c4e50a3ab3a2912cbf0355667c18 100644 (file)
@@ -836,7 +836,6 @@ public class string {
        }
 }
 
-[Import ()]
 [CCode (cprefix = "G", lower_case_cprefix = "g_", cheader_filename = "glib.h")]
 namespace GLib {
        [CCode (lower_case_cprefix = "", cheader_filename = "math.h")]
@@ -868,7 +867,7 @@ namespace GLib {
                public static float sinhf (float x);
                public static double tanh (double x);
                public static float tanhf (float x);
-               public static void sincos (double x, out double sinx, ref double cosx);
+               public static void sincos (double x, out double sinx, out double cosx);
                public static void sincosf (float x, out float sinx, out float cosx);
                public static double acosh (double x);
                public static float acoshf (float x);