]> Dogcows Code - chaz/openbox/blobdiff - openbox/screen.c
make the desktop popup a public function
[chaz/openbox] / openbox / screen.c
index d37288fa8da3ad2b784e9e4f7361b7259b442474..7f0c70c96ddc2e915f75dd932c46bca814a45f13 100644 (file)
@@ -568,7 +568,7 @@ static guint translate_row_col(guint r, guint c)
     return 0;
 }
 
-static void popup_cycle(guint d, gboolean show)
+void screen_desktop_popup(guint d, gboolean show)
 {
     Rect *a;
 
@@ -687,14 +687,14 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
     }
 
     if (dialog) {
-        popup_cycle(d, TRUE);
+        screen_desktop_popup(d, TRUE);
         return d;
     }
 
 done_cycle:
     first = TRUE;
 
-    popup_cycle(0, FALSE);
+    screen_desktop_popup(0, FALSE);
 
     return d;
 }
This page took 0.022403 seconds and 4 git commands to generate.