summaryrefslogtreecommitdiff
path: root/openbox/window.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-02-06 19:40:21 -0500
committerDana Jansens <danakj@orodu.net>2008-02-14 14:24:07 -0500
commitf9b59a49111b8db151af72aae334887105b4141b (patch)
treeba3365606c1c0e4dd712cf5519fe33bf346c324a /openbox/window.c
parentf1f61ff703db72cc1db7f834c9cb45616d55da10 (diff)
make the internal window type more easily inheritable
Diffstat (limited to 'openbox/window.c')
-rw-r--r--openbox/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/window.c b/openbox/window.c
index c5e6a4ea..3dd8f5ad 100644
--- a/openbox/window.c
+++ b/openbox/window.c
@@ -57,7 +57,7 @@ Window window_top(ObWindow *self)
case Window_Client:
return ((ObClient*)self)->frame->window;
case Window_Internal:
- return ((InternalWindow*)self)->win;
+ return ((InternalWindow*)self)->window;
}
g_assert_not_reached();
return None;