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/menuframe.c | |
| parent | 262591ec1adc1badfcb36e9e6876dd81f2df9492 (diff) | |
use const Rect* not Rect const*
Diffstat (limited to 'openbox/menuframe.c')
| -rw-r--r-- | openbox/menuframe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/menuframe.c b/openbox/menuframe.c index 85f09519..9127257e 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -321,7 +321,7 @@ static void menu_frame_place_submenu(ObMenuFrame *self, gint *x, gint *y) void menu_frame_move_on_screen(ObMenuFrame *self, gint x, gint y, gint *dx, gint *dy) { - Rect const *a = NULL; + const Rect *a = NULL; gint pos, half; *dx = *dy = 0; @@ -831,7 +831,7 @@ void menu_frame_render(ObMenuFrame *self) static void menu_frame_update(ObMenuFrame *self) { GList *mit, *fit; - Rect const *a; + const Rect *a; gint h; menu_pipe_execute(self->menu); |
