diff options
author | Eugene Sandulenko | 2011-04-16 15:54:01 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2011-04-16 15:54:01 +0300 |
commit | 601d66df4fbc2b1973c7e24ce3e01b255cf16f98 (patch) | |
tree | c69b1ae64bb5018c960738afe7cbd84d738fea47 /engines | |
parent | 550615f157a5a52932f0dc18757e00435b463b4e (diff) | |
download | scummvm-rg350-601d66df4fbc2b1973c7e24ce3e01b255cf16f98.tar.gz scummvm-rg350-601d66df4fbc2b1973c7e24ce3e01b255cf16f98.tar.bz2 scummvm-rg350-601d66df4fbc2b1973c7e24ce3e01b255cf16f98.zip |
HUGO: Fix crashes
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hugo/dialogs.cpp | 3 | ||||
-rw-r--r-- | engines/hugo/dialogs.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/engines/hugo/dialogs.cpp b/engines/hugo/dialogs.cpp index 0b08d48b65..af8ee4f7f6 100644 --- a/engines/hugo/dialogs.cpp +++ b/engines/hugo/dialogs.cpp @@ -293,9 +293,6 @@ void EntryDialog::handleCommand(GUI::CommandSender *sender, uint32 command, uint } } -void EntryDialog::reflowLayout() { -} - void EntryDialog::init() { } diff --git a/engines/hugo/dialogs.h b/engines/hugo/dialogs.h index f870414a93..fd9c4e7ade 100644 --- a/engines/hugo/dialogs.h +++ b/engines/hugo/dialogs.h @@ -105,7 +105,6 @@ public: EntryDialog(const Common::String &title, const Common::String &buttonLabel, const Common::String &defaultValue); virtual ~EntryDialog(); - void reflowLayout(); void handleCommand(GUI::CommandSender *sender, uint32 command, uint32 data); const Common::String &getEditString() const { return _text->getEditString(); } |