diff options
Diffstat (limited to 'gui/ListWidget.cpp')
-rw-r--r-- | gui/ListWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/ListWidget.cpp b/gui/ListWidget.cpp index f534c14d1e..8e5ef99f06 100644 --- a/gui/ListWidget.cpp +++ b/gui/ListWidget.cpp @@ -34,7 +34,7 @@ namespace GUI { ListWidget::ListWidget(GuiObject *boss, const String &name) - : EditableWidget(boss, name), CommandSender(boss) { + : EditableWidget(boss, name) { _scrollBar = NULL; _textWidth = NULL; @@ -63,7 +63,7 @@ ListWidget::ListWidget(GuiObject *boss, const String &name) } ListWidget::ListWidget(GuiObject *boss, int x, int y, int w, int h) - : EditableWidget(boss, x, y, w, h), CommandSender(boss) { + : EditableWidget(boss, x, y, w, h) { _scrollBar = NULL; _textWidth = NULL; |