aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hugo/dialogs.cpp9
-rw-r--r--engines/hugo/dialogs.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/engines/hugo/dialogs.cpp b/engines/hugo/dialogs.cpp
index 5907012fb6..ead432c5df 100644
--- a/engines/hugo/dialogs.cpp
+++ b/engines/hugo/dialogs.cpp
@@ -239,6 +239,9 @@ EntryDialog::EntryDialog(const Common::String &title, const Common::String &butt
new GUI::ButtonWidget(this, 20, 20, 30, 10, buttonLabel, 0, kCmdButton);
}
+EntryDialog::~EntryDialog() {
+}
+
void EntryDialog::handleCommand(GUI::CommandSender *sender, uint32 command, uint32 data) {
switch (command) {
case kCmdButton:
@@ -249,5 +252,11 @@ void EntryDialog::handleCommand(GUI::CommandSender *sender, uint32 command, uint
}
}
+void EntryDialog::reflowLayout() {
+}
+
+void EntryDialog::init() {
+}
+
} // End of namespace Hugo
diff --git a/engines/hugo/dialogs.h b/engines/hugo/dialogs.h
index ce53dab45e..1ef196a708 100644
--- a/engines/hugo/dialogs.h
+++ b/engines/hugo/dialogs.h
@@ -102,7 +102,7 @@ protected:
class EntryDialog : public GUI::Dialog {
EntryDialog(const Common::String &title, const Common::String &buttonLabel, const Common::String &defaultValue);
- ~EntryDialog();
+ virtual ~EntryDialog();
void reflowLayout();
void handleCommand(GUI::CommandSender *sender, uint32 command, uint32 data);