diff options
author | Max Horn | 2004-03-28 13:02:28 +0000 |
---|---|---|
committer | Max Horn | 2004-03-28 13:02:28 +0000 |
commit | da400a38eda7b8a48c70ffe6ad03ea0df0233a14 (patch) | |
tree | a252ced76c5663d4d2754dba7e47f0b8c9dbc4c7 | |
parent | 9d89a5f5433b54e772b600e188c98218606da94a (diff) | |
download | scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.tar.gz scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.tar.bz2 scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.zip |
Small tweaks for MIPSPro compiler
svn-id: r13397
-rw-r--r-- | backends/fs/fs.h | 2 | ||||
-rw-r--r-- | scumm/dialogs.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h index 45abea5192..c6b35e6a02 100644 --- a/backends/fs/fs.h +++ b/backends/fs/fs.h @@ -149,7 +149,7 @@ public: /** * Sorted list of multiple file system nodes. E.g. the contents of a given directory. */ -class FSList : Common::List<FilesystemNode *> { +class FSList : private Common::List<FilesystemNode *> { public: class const_iterator { friend class FSList; diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index ce7884eb48..cd3d2adf4d 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -209,7 +209,7 @@ public: }; SaveLoadChooser::SaveLoadChooser(const String &title, const String &buttonLabel, bool saveMode) - : ChooserDialog(title, buttonLabel, 182), _saveMode(saveMode) { + : GUI::ChooserDialog(title, buttonLabel, 182), _saveMode(saveMode) { _list->setEditable(saveMode); _list->setNumberingMode(saveMode ? GUI::kListNumberingOne : GUI::kListNumberingZero); @@ -242,7 +242,7 @@ void SaveLoadChooser::handleCommand(CommandSender *sender, uint32 cmd, uint32 da _chooseButton->draw(); break; default: - ChooserDialog::handleCommand(sender, cmd, data); + GUI::ChooserDialog::handleCommand(sender, cmd, data); } } |