mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Small tweaks for MIPSPro compiler
svn-id: r13397
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
+2
-2
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user