summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2008-02-15 16:47:10 +0100
committerMikael Magnusson <mikachu@comhem.se>2008-02-15 16:47:10 +0100
commit9e05faf3d6ac1c527032efb7210de8bbfeb2212c (patch)
tree4ab52e2891af75fb0cf0ba125fd69b727c71c56a /openbox/client.h
parent0ffd1ccc4701a9814e6ee570461b1250dd16f1e3 (diff)
() -> (void) also in .h files, and fix a place that gave arguments when it shouldn't have.
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/client.h b/openbox/client.h
index c24fcb20..6a396cf4 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -327,7 +327,7 @@ void client_remove_destroy_notify(ObClientCallback func);
*/
void client_manage(Window win, struct _ObPrompt *prompt);
/*! Unmanages all managed windows */
-void client_unmanage_all();
+void client_unmanage_all(void);
/*! Unmanages a given client */
void client_unmanage(ObClient *client);
@@ -340,7 +340,7 @@ ObClient *client_fake_manage(Window win);
void client_fake_unmanage(ObClient *self);
/*! Sets the client list on the root window from the client_list */
-void client_set_list();
+void client_set_list(void);
/*! Determines if the client should be shown or hidden currently.
@return TRUE if it should be visible; otherwise, FALSE.
@@ -715,7 +715,7 @@ void client_set_layer(ObClient *self, gint layer);
guint client_monitor(ObClient *self);
-ObClient* client_under_pointer();
+ObClient* client_under_pointer(void);
gboolean client_has_group_siblings(ObClient *self);