all repos — openbox @ 62d719d6b719abfe275517464504a220704f4035

openbox fork - make it a bit more like ryudo

dont pass a const
Dana Jansens danakj@orodu.net
commit

62d719d6b719abfe275517464504a220704f4035

parent

e7bb906637f2b1b62b81950c99ab49443ba815f5

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M otk/widget.hhotk/widget.hh

@@ -39,7 +39,7 @@ void configureHandler(const XConfigureEvent &e);

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; }