]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
test/gtktemplate: Use correct class name
authorRico Tzschichholz <ricotz@ubuntu.com>
Tue, 8 Feb 2022 23:05:24 +0000 (00:05 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Tue, 8 Feb 2022 23:05:24 +0000 (00:05 +0100)
13 files changed:
tests/gtktemplate/gtkcallback-incompatible.test
tests/gtktemplate/gtkcallback-unknown.test
tests/gtktemplate/gtkchild-field-assignment.test
tests/gtktemplate/gtkchild-field-incompatible-type.test
tests/gtktemplate/gtkchild-field-out-assignment.test
tests/gtktemplate/gtkchild-field-ref-assignment.test
tests/gtktemplate/gtkchild-field-unknown.test
tests/gtktemplate/gtkchild-property-assignment.test
tests/gtktemplate/gtkchild-property-not-automatic.test
tests/gtktemplate/gtkchild-property-unknown.test
tests/gtktemplate/gtkchild-without-gtktemplate.test
tests/gtktemplate/gtktemplate-gtkwidget-subclass.test
tests/gtktemplate/gtktemplate.vala

index 226408ff1149187a4f010de2b199e198159f0480..8a0d309967578fb4295f46b1e7c10c661e84aff8 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkCallback]
        void on_clicked_cb (string s) {
        }
index 3158da85e89b3da023ee2dc92fcfd0cf77084b0b..e7d3464e485d8653156a29bc89e53a3c7f1512d5 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkCallback]
        void on_unknown_cb (Gtk.Button button) {
        }
index 4fc71f1d90051c7435d3cbac82a70fdd6f252e35..7d1538f7c4cf7dd66340d04800fb272f3c50f642 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0;
 
index 1ce026135045217441ca0d13dfb037458cb82059..ad867410fcaaaad02c0d9868a4f6fb18752195a0 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Box button0;
 }
index 3f82f4251de012bf7ec6b53ffc6121a7e6407d2f..d062a2cebca830a7464bbf4f97381460b8125bff 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0;
 
index e8dab2e1ceb72b519017f69f67c74246e71590d6..47148d8db16b9d5e83f8ff30446b6431d303df37 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0;
 
index 2e23ea0b4636b0a275dc7828d18b6c5818982568..9c6e68ae004b016d7416b3ad796bead80c30be01 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button unknown;
 }
index 4905ea87c8af60a79c487763a713203e131d0674..85b7df57288118ea84a1a1919c3ed002fa6fe39f 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0 { get; set; }
 
index e46cee57488124e9bcc23eaaf11cba86e57c5208..28329dc2b6cc88273aa5468d657428ed5e45db3d 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0 { get { return null; } }
 }
index caa6218f33040302b834be9d352b8515cb6a3ab6..1d6651532931b33a558bc9f758c77072c19a8a6b 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button unknown { get; }
 }
index 33d32ea4e947b1c10f4d5b6508909abcbd4b55ab..49e09c0eda8c2a69a73755c7d3fe59b1e82f3408 100644 (file)
@@ -1,6 +1,6 @@
 Invalid Code
 
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public unowned Gtk.Button button0;
 }
index bea1b3b86294e3cfc13cb8630f2ec4b21b407297..55e7424bd99605dc5897eeaca801942b15cc12ff 100644 (file)
@@ -1,7 +1,7 @@
 Invalid Code
 
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : GLib.Object {
+public class GtkTemplateTest : GLib.Object {
 }
 
 void main () {
index 3919680e26f540a137d30a4411284c9853ec6326..74dadb08102c2da6ee87034dd41a9aef57d7e9c6 100644 (file)
@@ -1,5 +1,5 @@
 [GtkTemplate (ui = "/org/example/gtktemplate.ui")]
-public class GtkTemplate : Gtk.ApplicationWindow {
+public class GtkTemplateTest : Gtk.ApplicationWindow {
        [GtkChild]
        public Gtk.Button button0 { get; }