summaryrefslogtreecommitdiff
path: root/otk/widget.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-01 10:57:49 +0000
committerDana Jansens <danakj@orodu.net>2002-12-01 10:57:49 +0000
commit4d1a90b0d22927c7a4cba0f347bb39c868204bc6 (patch)
tree56bbece084168664922bc62c25b649c6e3cf283d /otk/widget.hh
parentcb5dfe7cfb2416ac7bf0cedecd27c722c310a0ea (diff)
add a recursive flags to OtkWidget::show/hide
dont delet eshit in the style from button's destructor
Diffstat (limited to 'otk/widget.hh')
-rw-r--r--otk/widget.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/widget.hh b/otk/widget.hh
index cc6827cf..6c122a1d 100644
--- a/otk/widget.hh
+++ b/otk/widget.hh
@@ -60,8 +60,8 @@ public:
virtual void setGeometry(int x, int y, int width, int height);
inline bool isVisible(void) const { return _visible; };
- virtual void show(void);
- virtual void hide(void);
+ virtual void show(bool recursive = false);
+ virtual void hide(bool recursive = false);
inline bool isFocused(void) const { return _focused; };
virtual void focus(void);