summaryrefslogtreecommitdiff
path: root/tests/simple.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-08-07 17:07:17 +0200
committerJavier Jardón <jjardon@gnome.org>2010-08-07 17:19:16 +0200
commit3ccc617052cbd85a066aba2d17c6983551f6d499 (patch)
tree50b457b567cc6a13aa6589c9877675fe4cda93b3 /tests/simple.c
parent4198dd8519c3bce56f51b071e9ee0477fe6c3a26 (diff)
downloadgtk+-3ccc617052cbd85a066aba2d17c6983551f6d499.tar.gz
Completely remove any use of GtkWindow allow-grow and allow-shrink properties
These have been deprecated and removed from master. GtkWindow:resizable should be used instead. This completes commit 1a03a65e36b6288f7854da30bf89b86ad3592726 Reported by Benjamin Otte
Diffstat (limited to 'tests/simple.c')
-rw-r--r--tests/simple.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/simple.c b/tests/simple.c
index 19a19aa944..9a017d269c 100644
--- a/tests/simple.c
+++ b/tests/simple.c
@@ -41,8 +41,7 @@ main (int argc, char *argv[])
"user_data", NULL,
"type", GTK_WINDOW_TOPLEVEL,
"title", "hello world",
- "allow_grow", FALSE,
- "allow_shrink", FALSE,
+ "resizable", FALSE,
"border_width", 10,
NULL),
"signal::destroy", gtk_main_quit, NULL,