summaryrefslogtreecommitdiff
path: root/src/frame.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-20 15:38:49 +0000
committerDana Jansens <danakj@orodu.net>2002-12-20 15:38:49 +0000
commit68194ce957db36ead19a39fdc7636a220befafe9 (patch)
treec405d332e6189babdb2ffc055a075cb718176f17 /src/frame.hh
parent06de24ec6666578759eff2b348e50f5e8e20f3bd (diff)
update to cleaned up otk api
Diffstat (limited to 'src/frame.hh')
-rw-r--r--src/frame.hh20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/frame.hh b/src/frame.hh
index 1d7ebd6c..37eee7ea 100644
--- a/src/frame.hh
+++ b/src/frame.hh
@@ -113,25 +113,25 @@ public:
void frameGravity(int &x, int &y);
//! Gets the window id of the frame's "plate" subelement
- inline Window plate() const { return _plate.getWindow(); }
+ inline Window plate() const { return _plate.window(); }
//! Gets the window id of the frame's "titlebar" subelement
- inline Window titlebar() const { return _titlebar.getWindow(); }
+ inline Window titlebar() const { return _titlebar.window(); }
//! Gets the window id of the frame's "label" subelement
- inline Window label() const { return _label.getWindow(); }
+ inline Window label() const { return _label.window(); }
//! Gets the window id of the frame's "close button" subelement
- inline Window button_close() const { return _button_close.getWindow(); }
+ inline Window button_close() const { return _button_close.window(); }
//! Gets the window id of the frame's "iconify button" subelement
- inline Window button_iconify() const { return _button_iconify.getWindow(); }
+ inline Window button_iconify() const { return _button_iconify.window(); }
//! Gets the window id of the frame's "maximize button" subelement
- inline Window button_max() const { return _button_max.getWindow(); }
+ inline Window button_max() const { return _button_max.window(); }
//! Gets the window id of the frame's "sticky button" subelement
- inline Window button_stick() const { return _button_stick.getWindow(); }
+ inline Window button_stick() const { return _button_stick.window(); }
//! Gets the window id of the frame's "handle" subelement
- inline Window handle() const { return _handle.getWindow(); }
+ inline Window handle() const { return _handle.window(); }
//! Gets the window id of the frame's "left grip" subelement
- inline Window grip_left() const { return _grip_left.getWindow(); }
+ inline Window grip_left() const { return _grip_left.window(); }
//! Gets the window id of the frame's "right grip" subelement
- inline Window grip_right() const { return _grip_right.getWindow(); }
+ inline Window grip_right() const { return _grip_right.window(); }
};