diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-26 21:11:59 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-20 01:36:54 -0500 |
| commit | 0fcf5ead0fb38710e6277da8b59c6ad19f907092 (patch) | |
| tree | d1db143f6b14cbcd57aa27917bd8bd07133272ee /openbox/client_menu.c | |
| parent | e2ddfaf9fff1fb9dd6ebdc1a95f2b228d6baedb2 (diff) | |
make openbox use the obt prop.c/h stuff
holy search and replace batman
Diffstat (limited to 'openbox/client_menu.c')
| -rw-r--r-- | openbox/client_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/client_menu.c b/openbox/client_menu.c index cf556744..96970352 100644 --- a/openbox/client_menu.c +++ b/openbox/client_menu.c @@ -26,8 +26,8 @@ #include "frame.h" #include "moveresize.h" #include "event.h" -#include "prop.h" #include "gettext.h" +#include "obt/prop.h" #include <glib.h> @@ -140,7 +140,7 @@ static void client_menu_execute(ObMenuEntry *e, ObMenuFrame *f, screen_pointer_pos(&x, &y); moveresize_start(c, x, y, 0, - prop_atoms.net_wm_moveresize_move_keyboard); + OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD)); break; case CLIENT_RESIZE: /* this needs to grab the keyboard so hide the menu */ @@ -149,7 +149,7 @@ static void client_menu_execute(ObMenuEntry *e, ObMenuFrame *f, screen_pointer_pos(&x, &y); moveresize_start(c, x, y, 0, - prop_atoms.net_wm_moveresize_size_keyboard); + OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD)); break; case CLIENT_CLOSE: client_close(c); |
