stacking_set_list();
}
-static void raise(GList *wins)
+static void do_raise(GList *wins)
{
GList *it;
GList *layer[NUM_STACKLAYER] = {NULL};
}
}
-static void lower(GList *wins)
+static void do_lower(GList *wins)
{
GList *it;
GList *layer[NUM_STACKLAYER] = {NULL};
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);
}
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);
}