summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--otk/widget.hh15
1 files 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;