diff options
author | Paweł Kołodziejski | 2005-03-15 09:24:01 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2005-03-15 09:24:01 +0000 |
commit | 1a368f2e7ce31b2f5cbcc1133e846ad5ca41029f (patch) | |
tree | d88a8a6986ca75dd258e0019df34e9b8620dc3e4 /scumm | |
parent | b23aaf98fe39664b392b5a6682ba5d58d5b9aa8c (diff) | |
download | scummvm-rg350-1a368f2e7ce31b2f5cbcc1133e846ad5ca41029f.tar.gz scummvm-rg350-1a368f2e7ce31b2f5cbcc1133e846ad5ca41029f.tar.bz2 scummvm-rg350-1a368f2e7ce31b2f5cbcc1133e846ad5ca41029f.zip |
inproper hack for compilation with emsvc4. i don't know how to fix it:
"'GUI::Dialog::open' : illegal call of non-static member function"
svn-id: r17151
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index dc325f7889..3b26e98316 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -656,7 +656,9 @@ void ValueDisplayDialog::handleKeyDown(uint16 ascii, int keycode, int modifiers) } void ValueDisplayDialog::open() { +#ifndef _WIN32_WCE GUI::Dialog::open(); +#endif setResult(_value); _timer = getMillis() + kDisplayDelay; } |