diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-02 16:11:04 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-02 16:11:04 +0000 |
| commit | c6945c13975b4b96463816a58f5185b4c49cdc9c (patch) | |
| tree | 17a7da6a0227805163d7da3d6c81e6d0dcf1f561 /openbox/stacking.c | |
| parent | bbc2fa53ce3d14f473b2ba50def9024da44c2581 (diff) | |
rename the raise and lower functions. raise is claimed by signal.h already
Diffstat (limited to 'openbox/stacking.c')
| -rw-r--r-- | openbox/stacking.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/stacking.c b/openbox/stacking.c index 643b3118..ebd863ea 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -79,7 +79,7 @@ static void do_restack(GList *wins, GList *before) stacking_set_list(); } -static void raise(GList *wins) +static void do_raise(GList *wins) { GList *it; GList *layer[NUM_STACKLAYER] = {NULL}; @@ -106,7 +106,7 @@ static void raise(GList *wins) } } -static void lower(GList *wins) +static void do_lower(GList *wins) { GList *it; GList *layer[NUM_STACKLAYER] = {NULL}; @@ -237,7 +237,7 @@ void stacking_raise(ObWindow *window) window = top_transient(window); wins = pick_windows(window); wins = g_list_concat(wins, pick_group_windows(window)); - raise(wins); + do_raise(wins); g_list_free(wins); } @@ -248,7 +248,7 @@ void stacking_lower(ObWindow *window) window = top_transient(window); wins = pick_windows(window); wins = g_list_concat(pick_group_windows(window), wins); - lower(wins); + do_lower(wins); g_list_free(wins); } |
