From: Jürg Billeter Date: Sat, 17 Jan 2009 23:02:49 +0000 (+0000) Subject: Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038 X-Git-Tag: VALA_0_5_6~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2874e04170228976ccdf9a2ff63804f10141e61;p=thirdparty%2Fvala.git Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038 2009-01-18 Jürg Billeter * vapi/glib-2.0.vapi: Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038 svn path=/trunk/; revision=2383 --- diff --git a/ChangeLog b/ChangeLog index 306b6c05c..4566257be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-01-18 Jürg Billeter + + * vapi/glib-2.0.vapi: + + Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038 + 2009-01-17 Jürg Billeter * gobject/valaccodemethodcallmodule.vala: diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 06d7415f1..967601ce1 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -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);