aboutsummaryrefslogtreecommitdiff
path: root/gui/dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/dialog.cpp')
-rw-r--r--gui/dialog.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/gui/dialog.cpp b/gui/dialog.cpp
index 1fdf872665..e48602a95f 100644
--- a/gui/dialog.cpp
+++ b/gui/dialog.cpp
@@ -323,7 +323,7 @@ Widget *Dialog::findWidget(const char *name) {
return Widget::findWidgetInChain(_firstWidget, name);
}
-void Dialog::deleteWidget(Widget *del) {
+void Dialog::removeWidget(Widget *del) {
if (del == _mouseWidget)
_mouseWidget = NULL;
if (del == _focusedWidget)
@@ -362,8 +362,4 @@ ButtonWidget *Dialog::addButton(GuiObject *boss, int x, int y, const Common::Str
return new ButtonWidget(boss, x, y, w, h, label, cmd, hotkey);
}
-uint32 GuiObject::getMillis() {
- return g_system->getMillis();
-}
-
} // End of namespace GUI