diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-01-29 11:51:09 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-01-29 11:54:07 -0500 |
commit | e79db79e2c058684dfd9907b65e713ee532e002e (patch) | |
tree | 692076cc05f0e2fc48934d5134cb98c89110c9b8 | |
parent | 17d9e94682303bb9c2f3eb09a6d70a2497349c81 (diff) | |
download | gtk+-e79db79e2c058684dfd9907b65e713ee532e002e.tar.gz |
testgtk: Avoid deprecation warnings
Eventually, we should probably remove the examples that rely
on geometry support, since they probably don't work correctly
anymore. For now, just disable the warnings.
-rw-r--r-- | tests/testgtk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c index be43772dd9..55572f52b3 100644 --- a/tests/testgtk.c +++ b/tests/testgtk.c @@ -7678,8 +7678,10 @@ set_geometry_callback (GtkWidget *entry, text = gtk_editable_get_chars (GTK_EDITABLE (entry), 0, -1); +G_GNUC_BEGIN_IGNORE_DEPRECATIONS if (!gtk_window_parse_geometry (target, text)) g_print ("Bad geometry string '%s'\n", text); +G_GNUC_END_IGNORE_DEPRECATIONS g_free (text); } |