summaryrefslogtreecommitdiff
path: root/openbox/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/group.h')
-rw-r--r--openbox/group.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/group.h b/openbox/group.h
index dfc6e883..7cb6a405 100644
--- a/openbox/group.h
+++ b/openbox/group.h
@@ -4,7 +4,7 @@
#include <X11/Xlib.h>
#include <glib.h>
-struct Client;
+struct _ObClient;
typedef struct Group {
Window leader;
@@ -18,8 +18,8 @@ extern GHashTable *group_map;
void group_startup();
void group_shutdown();
-Group *group_add(Window leader, struct Client *client);
+Group *group_add(Window leader, struct _ObClient *client);
-void group_remove(Group *self, struct Client *client);
+void group_remove(Group *self, struct _ObClient *client);
#endif