diff options
author | infirit <[email protected]> | 2015-07-21 16:04:11 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-09-14 18:44:29 +0200 |
commit | 79a74501f12e6b452a29d2047c3ea72dc948e6ef (patch) | |
tree | d00fdfadb01aaaeddb7ba01ca214776e679d58fb /src/wm-tester | |
parent | 2d0ba5568ccc8d98746f2af3aa9c9ff4c1adca62 (diff) | |
download | marco-79a74501f12e6b452a29d2047c3ea72dc948e6ef.tar.bz2 marco-79a74501f12e6b452a29d2047c3ea72dc948e6ef.tar.xz |
Drop deprecated use of GTK_WIDGET_DRAWABLE, GTK_WIDGET_STATE and gtk_widget_set_uposition
Diffstat (limited to 'src/wm-tester')
-rw-r--r-- | src/wm-tester/main.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/wm-tester/main.c b/src/wm-tester/main.c index d757270d..ae6db421 100644 --- a/src/wm-tester/main.c +++ b/src/wm-tester/main.c @@ -120,19 +120,11 @@ evil_timeout (gpointer data) w = gtk_window_new (GTK_WINDOW_TOPLEVEL); -#if GTK_CHECK_VERSION (3, 0, 0) gtk_window_move (GTK_WINDOW (w), g_random_int_range (0, gdk_screen_width ()), g_random_int_range (0, gdk_screen_height ())); -#else - gtk_widget_set_uposition (w, - g_random_int_range (0, - gdk_screen_width ()), - g_random_int_range (0, - gdk_screen_height ())); -#endif parent = NULL; |