diff options
author | Paweł Kołodziejski | 2005-03-15 09:53:07 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2005-03-15 09:53:07 +0000 |
commit | adbd8f23e5af3fdbbe82e5f29983ede667068807 (patch) | |
tree | 32eca6434873b800159e5d5933e62de3973d25f6 /scumm | |
parent | 009cc66a24529eda12ac399c072ea32f20855a09 (diff) | |
download | scummvm-rg350-adbd8f23e5af3fdbbe82e5f29983ede667068807.tar.gz scummvm-rg350-adbd8f23e5af3fdbbe82e5f29983ede667068807.tar.bz2 scummvm-rg350-adbd8f23e5af3fdbbe82e5f29983ede667068807.zip |
fixed compilation for emsvc4
svn-id: r17153
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index 3b26e98316..e77142a073 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -55,6 +55,7 @@ using GUI::WIDGET_ENABLED; typedef GUI::OptionsDialog GUI_OptionsDialog; typedef GUI::ChooserDialog GUI_ChooserDialog; +typedef GUI::Dialog GUI_Dialog; namespace Scumm { @@ -656,9 +657,7 @@ void ValueDisplayDialog::handleKeyDown(uint16 ascii, int keycode, int modifiers) } void ValueDisplayDialog::open() { -#ifndef _WIN32_WCE - GUI::Dialog::open(); -#endif + GUI_Dialog::open(); setResult(_value); _timer = getMillis() + kDisplayDelay; } |