summaryrefslogtreecommitdiff
path: root/tests/testtooltips.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-02-25 04:04:46 +0000
committerMatthias Clasen <mclasen@redhat.com>2020-02-25 04:04:46 +0000
commit9d80db29def6bb1792d5d0ffc2dc079dbdb8df19 (patch)
tree1f35fbf93fccde6cd442f61e7c97f5f539e0c744 /tests/testtooltips.c
parent00f6d1c24bfcca1c11318f68b1d0484fdec48f69 (diff)
parente73a40733f08b3d1d9cd5ce9927b6bdebbb6e8cf (diff)
downloadgtk+-9d80db29def6bb1792d5d0ffc2dc079dbdb8df19.tar.gz
Merge branch 'spinning-spinner' into 'master'
Rename GtkSpinner::active to ::spinning See merge request GNOME/gtk!1475
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r--tests/testtooltips.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c
index 86ae731f20..28e4070eea 100644
--- a/tests/testtooltips.c
+++ b/tests/testtooltips.c
@@ -428,7 +428,7 @@ main (int argc, char *argv[])
button = gtk_label_new ("Hidden here");
custom = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
gtk_container_add (GTK_CONTAINER (custom), gtk_label_new ("See, custom"));
- gtk_container_add (GTK_CONTAINER (custom), g_object_new (GTK_TYPE_SPINNER, "active", TRUE, NULL));
+ gtk_container_add (GTK_CONTAINER (custom), g_object_new (GTK_TYPE_SPINNER, "spinning", TRUE, NULL));
g_object_ref_sink (custom);
g_object_set (button, "has-tooltip", TRUE, NULL);
gtk_container_add (GTK_CONTAINER (box2), button);
@@ -438,7 +438,7 @@ main (int argc, char *argv[])
button = gtk_label_new ("Custom tooltip II");
custom = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
gtk_container_add (GTK_CONTAINER (custom), gtk_label_new ("See, custom too"));
- gtk_container_add (GTK_CONTAINER (custom), g_object_new (GTK_TYPE_SPINNER, "active", TRUE, NULL));
+ gtk_container_add (GTK_CONTAINER (custom), g_object_new (GTK_TYPE_SPINNER, "spinning", TRUE, NULL));
g_object_ref_sink (custom);
g_object_set (button, "has-tooltip", TRUE, NULL);
g_signal_connect (button, "query-tooltip",