diff options
author | Vicent Marti | 2008-08-13 17:46:00 +0000 |
---|---|---|
committer | Vicent Marti | 2008-08-13 17:46:00 +0000 |
commit | 2b52383534ecb5c3770dfb267d7238516f0ca144 (patch) | |
tree | 0dc6b6d060b0a489f5f1b88fe7c46d24ee4ad458 /gui/dialog.h | |
parent | 1d9f98d121e51943b4967cf6188062aae9195af4 (diff) | |
download | scummvm-rg350-2b52383534ecb5c3770dfb267d7238516f0ca144.tar.gz scummvm-rg350-2b52383534ecb5c3770dfb267d7238516f0ca144.tar.bz2 scummvm-rg350-2b52383534ecb5c3770dfb267d7238516f0ca144.zip |
Finished legacy API cleanup. Removed all legacy code.
Possible regressions.
svn-id: r33833
Diffstat (limited to 'gui/dialog.h')
-rw-r--r-- | gui/dialog.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index 553a63d1a9..bc5ce6b6e0 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -49,15 +49,15 @@ protected: Widget *_focusedWidget; Widget *_dragWidget; bool _visible; - uint16 _drawingHints; + + Theme::DialogBackground _backgroundType; private: int _result; - bool _dimsInactive; public: - Dialog(int x, int y, int w, int h, bool dimsInactive = true); - Dialog(const Common::String &name, bool dimsInactive = true); + Dialog(int x, int y, int w, int h); + Dialog(const Common::String &name); virtual int runModal(); @@ -91,9 +91,6 @@ protected: void setResult(int result) { _result = result; } int getResult() const { return _result; } - - // Whether dialog dims all underneath dialogs or not when active - bool dimsInactive() { return _dimsInactive; } }; } // End of namespace GUI |