summaryrefslogtreecommitdiff
path: root/openbox/window.c
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/window.c
parent375b504905908fb129f52b52ae7270deefda12f7 (diff)
rename the Client struct to ObClient
Diffstat (limited to 'openbox/window.c')
-rw-r--r--openbox/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/window.c b/openbox/window.c
index ed139b64..15cebcd7 100644
--- a/openbox/window.c
+++ b/openbox/window.c
@@ -29,7 +29,7 @@ Window window_top(ObWindow *self)
g_assert_not_reached();
break;
case Window_Client:
- return ((Client*)self)->frame->window;
+ return ((ObClient*)self)->frame->window;
case Window_Internal:
return ((InternalWindow*)self)->win;
}
@@ -49,7 +49,7 @@ Window window_layer(ObWindow *self)
g_assert_not_reached();
break;
case Window_Client:
- return ((Client*)self)->layer;
+ return ((ObClient*)self)->layer;
case Window_Internal:
return Layer_Internal;
}