From 62d719d6b719abfe275517464504a220704f4035 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 18 Dec 2002 08:42:40 +0000 Subject: [PATCH] dont pass a const --- otk/widget.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2