From: Juerg Billeter Date: Fri, 21 Mar 2008 10:15:14 +0000 (+0000) Subject: fix g_shell_parse_argv binding, fixes bug 523277 X-Git-Tag: VALA_0_2_0~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65bda1e40abb76fde528f56576dc9a62292ecba3;p=platform%2Fupstream%2Fvala.git fix g_shell_parse_argv binding, fixes bug 523277 2008-03-21 Juerg Billeter * vapi/glib-2.0.vapi: fix g_shell_parse_argv binding, fixes bug 523277 svn path=/trunk/; revision=1143 --- diff --git a/ChangeLog b/ChangeLog index 6a34c5d..b6146dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2008-03-21 Jürg Billeter + * vapi/glib-2.0.vapi: fix g_shell_parse_argv binding, + fixes bug 523277 + +2008-03-21 Jürg Billeter + * vapi/glib-2.0.vapi: fix g_mutex_trylock binding, fixes bug 523086 2008-03-21 Jürg Billeter diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 39700d7..0ec9cde 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -2102,7 +2102,7 @@ namespace GLib { } public static class Shell { - public static bool parse_argv (string! command_line, out int argcp, out string[] argvp) throws ShellError; + public static bool parse_argv (string! command_line, [CCode (array_length_pos = 1.9)] out string[] argvp) throws ShellError; public static string! quote (string! unquoted_string); public static string! unquote (string! quoted_string) throws ShellError; }