From 84d777e89f22080c0040a3e92fd70fe5393aced2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 18 Dec 2002 08:46:48 +0000 Subject: [PATCH] make shit protected --- otk/widget.hh | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/otk/widget.hh b/otk/widget.hh index c31067da..b9ff47ec 100644 --- a/otk/widget.hh +++ b/otk/widget.hh @@ -39,7 +39,7 @@ public: inline Window getWindow(void) const { return _window; } inline const OtkWidget *getParent(void) const { return _parent; } - inline OtkWidgetList &getChildren(void) const { return _children; } + inline const OtkWidgetList &getChildren(void) const { return _children; } inline unsigned int getScreen(void) const { return _screen; } inline const Rect &getRect(void) const { return _rect; } @@ -128,14 +128,11 @@ protected: bool _focused; virtual void adjust(void); - -private: - - void create(void); - void adjustHorz(void); - void adjustVert(void); - void internalResize(int width, int height); - void render(void); + virtual void create(void); + virtual void adjustHorz(void); + virtual void adjustVert(void); + virtual void internalResize(int width, int height); + virtual void render(void); Window _window; -- 2.44.0