diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-18 08:42:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-18 08:42:40 +0000 |
| commit | 62d719d6b719abfe275517464504a220704f4035 (patch) | |
| tree | 3de551cb7fb45ceec9e62bd90c759916cae437c6 | |
| parent | e7bb906637f2b1b62b81950c99ab49443ba815f5 (diff) | |
dont pass a const
| -rw-r--r-- | otk/widget.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otk/widget.hh b/otk/widget.hh index 5f1553c3..c31067da 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 const OtkWidgetList &getChildren(void) const { return _children; } + inline OtkWidgetList &getChildren(void) const { return _children; } inline unsigned int getScreen(void) const { return _screen; } inline const Rect &getRect(void) const { return _rect; } |
