]> Dogcows Code - chaz/openbox/commitdiff
make client_showhide a static function
authorDana Jansens <danakj@orodu.net>
Mon, 17 Mar 2003 02:05:05 +0000 (02:05 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 17 Mar 2003 02:05:05 +0000 (02:05 +0000)
openbox/client.c
openbox/client.h

index 2b95a598ea21c57c5e0cb56ea53d7168771f102f..fdc171fb87a80cfa6d373ec36e4839c149371722 100644 (file)
@@ -32,6 +32,7 @@ static void client_get_state(Client *self);
 static void client_get_shaped(Client *self);
 static void client_get_mwm_hints(Client *self);
 static void client_get_gravity(Client *self);
+static void client_showhide(Client *self);
 static void client_change_allowed_actions(Client *self);
 static void client_change_state(Client *self);
 static Client *search_focus_tree(Client *node, Client *skip);
@@ -1233,7 +1234,7 @@ gboolean client_should_show(Client *self)
     return TRUE;
 }
 
-void client_showhide(Client *self)
+static void client_showhide(Client *self)
 {
 
     if (client_should_show(self))
index 4df3893e08cc1eb0d11a1f573d7a45459c5f58bb..b41f0644d01bd0acae0ceb49bff5ac246e8989e7 100644 (file)
@@ -307,10 +307,6 @@ void client_set_list();
   surroundings (struts, etc). */
 void client_remaximize(Client *self);
 
-/*! Shows the window if it should be shown, or hides it
-  Used when changing desktops, the window's state, etc. */
-void client_showhide(Client *self);
-
 /*! Determines if the client should be shown or hidden currently.
   @return TRUE if it should be visible; otherwise, FALSE.
 */
This page took 0.026153 seconds and 4 git commands to generate.