X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fstacking.c;h=b44b98196d3f884cd265ca50a3d64bfe1b445254;hb=ea481338b5f16fd81a7b33e036ead39b918a51af;hp=6910b19160d1eed2bff7aa881d44f4ce66a670a7;hpb=e2ddfaf9fff1fb9dd6ebdc1a95f2b228d6baedb2;p=chaz%2Fopenbox diff --git a/openbox/stacking.c b/openbox/stacking.c index 6910b191..b44b9819 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -18,7 +18,6 @@ */ #include "openbox.h" -#include "prop.h" #include "screen.h" #include "focus.h" #include "client.h" @@ -26,6 +25,7 @@ #include "frame.h" #include "window.h" #include "debug.h" +#include "obt/prop.h" GList *stacking_list = NULL; /*! When true, stacking changes will not be reflected on the screen. This is @@ -54,8 +54,8 @@ void stacking_set_list(void) } } - PROP_SETA32(RootWindow(obt_display, ob_screen), - net_client_list_stacking, window, (gulong*)windows, i); + OBT_PROP_SETA32(RootWindow(obt_display, ob_screen), + NET_CLIENT_LIST_STACKING, WINDOW, (gulong*)windows, i); g_free(windows); } @@ -129,7 +129,7 @@ void stacking_temp_raise(ObWindow *window) } win[1] = window_top(window); - XRestackWindows(ob_display, win, 2); + XRestackWindows(obt_display, win, 2); pause_changes = TRUE; } @@ -144,7 +144,7 @@ void stacking_restore(void) win[0] = screen_support_win; for (i = 1, it = stacking_list; it; ++i, it = g_list_next(it)) win[i] = window_top(it->data); - XRestackWindows(ob_display, win, i); + XRestackWindows(obt_display, win, i); g_free(win); pause_changes = FALSE;