diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-04-16 11:31:22 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-04-16 11:37:21 -0400 |
| commit | 34178097d559ef522ea0984091489c209f4e9e0e (patch) | |
| tree | 881140c5a4e6e5a00e92956b5da438d44ed92e5c /openbox/focus_cycle_popup.c | |
| parent | 262591ec1adc1badfcb36e9e6876dd81f2df9492 (diff) | |
use const Rect* not Rect const*
Diffstat (limited to 'openbox/focus_cycle_popup.c')
| -rw-r--r-- | openbox/focus_cycle_popup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 16770ed7..ba2b4680 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -392,7 +392,7 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c) gint ml, mt, mr, mb; gint l, t, r, b; gint x, y, w, h; - Rect const *screen_area = NULL; + const Rect *screen_area = NULL; gint i; GList *it; const ObFocusCyclePopupTarget *newtarget; @@ -759,7 +759,7 @@ void focus_cycle_popup_single_show(struct _ObClient *c, /* do this stuff only when the dialog is first showing */ if (!popup.mapped) { - Rect const *a; + const Rect *a; popup_setup(&popup, FALSE, FALSE); g_assert(popup.targets == NULL); |
