aboutsummaryrefslogtreecommitdiff
path: root/gui/widget.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/widget.h')
-rw-r--r--gui/widget.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/widget.h b/gui/widget.h
index d6da1a5229..8c8db73608 100644
--- a/gui/widget.h
+++ b/gui/widget.h
@@ -113,7 +113,10 @@ protected:
virtual Widget *findWidget(int x, int y) { return this; }
- void releaseFocus() { _boss->releaseFocus(); }
+ void releaseFocus() { assert(_boss); _boss->releaseFocus(); }
+
+ // By default, delegate unhandled commands to the boss
+ void handleCommand(CommandSender *sender, uint32 cmd, uint32 data) { assert(_boss); _boss->handleCommand(sender, cmd, data); }
};
/* StaticTextWidget */