summaryrefslogtreecommitdiff
path: root/plugins/placement
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 /plugins/placement
parent375b504905908fb129f52b52ae7270deefda12f7 (diff)
rename the Client struct to ObClient
Diffstat (limited to 'plugins/placement')
-rw-r--r--plugins/placement/history.c4
-rw-r--r--plugins/placement/history.h2
-rw-r--r--plugins/placement/placement.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/placement/history.c b/plugins/placement/history.c
index f2b4ea63..22dbb6e0 100644
--- a/plugins/placement/history.c
+++ b/plugins/placement/history.c
@@ -49,7 +49,7 @@ static struct HistoryItem *history_find(const char *name, const char *class,
return NULL;
}
-gboolean place_history(Client *c)
+gboolean place_history(ObClient *c)
{
struct HistoryItem *hi;
int x, y, w, h;
@@ -90,7 +90,7 @@ gboolean place_history(Client *c)
return FALSE;
}
-static void set_history(Client *c)
+static void set_history(ObClient *c)
{
struct HistoryItem *hi;
diff --git a/plugins/placement/history.h b/plugins/placement/history.h
index 38571769..cbf9f68e 100644
--- a/plugins/placement/history.h
+++ b/plugins/placement/history.h
@@ -7,6 +7,6 @@
void history_startup();
void history_shutdown();
-gboolean place_history(Client *c);
+gboolean place_history(ObClient *c);
#endif
diff --git a/plugins/placement/placement.c b/plugins/placement/placement.c
index b567e229..a84c41ec 100644
--- a/plugins/placement/placement.c
+++ b/plugins/placement/placement.c
@@ -24,7 +24,7 @@ void plugin_setup_config()
parse_register("placement", parse_xml, NULL);
}
-static void place_random(Client *c)
+static void place_random(ObClient *c)
{
int l, r, t, b;
int x, y;