summaryrefslogtreecommitdiff
path: root/src/frame.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-04 07:04:23 +0000
committerDana Jansens <danakj@orodu.net>2003-01-04 07:04:23 +0000
commit8735c12d9633738a5150c451457471d797fa9bf1 (patch)
tree24616973540d34862310da88d539dd3790d832a3 /src/frame.cc
parent7ec03b895e746bcf165dacd9141b981bd762cc2d (diff)
shape works again. updating the delete_window protocol update the decor.
Diffstat (limited to 'src/frame.cc')
-rw-r--r--src/frame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.cc b/src/frame.cc
index 7a99f9a0..0cc96c2a 100644
--- a/src/frame.cc
+++ b/src/frame.cc
@@ -364,13 +364,13 @@ void OBFrame::adjustShape()
if (!_client->shaped()) {
// clear the shape on the frame window
- XShapeCombineMask(otk::OBDisplay::display, window(), ShapeBounding,
+ XShapeCombineMask(otk::OBDisplay::display, _window, ShapeBounding,
_innersize.left,
_innersize.top,
None, ShapeSet);
} else {
// make the frame's shape match the clients
- XShapeCombineShape(otk::OBDisplay::display, window(), ShapeBounding,
+ XShapeCombineShape(otk::OBDisplay::display, _window, ShapeBounding,
_innersize.left,
_innersize.top,
_client->window(), ShapeBounding, ShapeSet);