summaryrefslogtreecommitdiff
path: root/openbox/group.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-07-10 06:38:42 +0000
committerDana Jansens <danakj@orodu.net>2003-07-10 06:38:42 +0000
commit2477a38d2f3063b697e44bf3690cf280fb26ca8a (patch)
tree0107f30636cc59a94629a0d17b7cf5404e970e3b /openbox/group.h
parent375b504905908fb129f52b52ae7270deefda12f7 (diff)
rename the Client struct to ObClient
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