]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
glib-2.0: Fix KeyFile get_comment and set_comment bindings
authorLuca Bruno <lucabru@src.gnome.org>
Thu, 17 Mar 2011 06:48:32 +0000 (07:48 +0100)
committerLuca Bruno <lucabru@src.gnome.org>
Thu, 17 Mar 2011 06:48:32 +0000 (07:48 +0100)
vapi/glib-2.0.vapi

index b953e68213a5010f876c535ce18cec947c0ada58..047ac1af886290553826aec34d5a278e33ba944c 100644 (file)
@@ -3461,7 +3461,7 @@ namespace GLib {
                public int[] get_integer_list (string group_name, string key) throws KeyFileError;
                [CCode (array_length_type = "gsize")]
                public double[] get_double_list (string group_name, string key) throws KeyFileError;
-               public string get_comment (string group_name, string key) throws KeyFileError;
+               public string get_comment (string? group_name, string? key) throws KeyFileError;
                public void set_value (string group_name, string key, string value);
                public void set_string (string group_name, string key, string str);
                public void set_locale_string (string group_name, string key, string locale, string str);
@@ -3475,7 +3475,7 @@ namespace GLib {
                public void set_boolean_list (string group_name, string key, bool[] list);
                public void set_integer_list (string group_name, string key, int[] list);
                public void set_double_list (string group_name, string key, double[] list);
-               public void set_comment (string group_name, string key, string comment) throws KeyFileError;
+               public void set_comment (string? group_name, string? key, string comment) throws KeyFileError;
                public void remove_group (string group_name) throws KeyFileError;
                public void remove_key (string group_name, string key) throws KeyFileError;
                public void remove_comment (string group_name, string key) throws KeyFileError;