]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
glib-2.0: Rename DataTestFunc to TestDataFunc
authorLuca Bruno <lucabru@src.gnome.org>
Tue, 19 Apr 2011 20:21:14 +0000 (22:21 +0200)
committerJürg Billeter <j@bitron.ch>
Sun, 29 May 2011 08:58:38 +0000 (10:58 +0200)
Fixes bug 645178.

vapi/glib-2.0.vapi

index 3137ccbd4d754d1ffced71da0e3250b962e1d044..00626f1d7817b756ceaa8787a3e331041a30829d 100644 (file)
@@ -3600,7 +3600,7 @@ namespace GLib {
                public static bool quiet ();
                public static int run ();
                public static void add_func (string testpath, Callback test_funcvoid);
-               public static void add_data_func (string testpath, [CCode (delegate_target_pos = 1.9)] DataTestFunc test_funcvoid);
+               public static void add_data_func (string testpath, [CCode (delegate_target_pos = 1.9)] TestDataFunc test_funcvoid);
                [PrintfFormat]
                public static void message (string format, ...);
                public static void bug_base (string uri_pattern);
@@ -3648,7 +3648,7 @@ namespace GLib {
        }
 
        public delegate void TestFunc (void* fixture);
-       public delegate void DataTestFunc ();
+       public delegate void TestDataFunc ();
 
        [Flags]
        [CCode (cprefix = "G_TEST_TRAP_", has_type_id = false)]