From e2874e04170228976ccdf9a2ff63804f10141e61 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrg=20Billeter?= Date: Sat, 17 Jan 2009 23:02:49 +0000 Subject: [PATCH] Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- ChangeLog | 6 ++++++ vapi/glib-2.0.vapi | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 306b6c05..4566257b 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 06d7415f..967601ce 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); -- 2.11.4.GIT