Small tweaks for MIPSPro compiler

svn-id: r13397
This commit is contained in:
Max Horn
2004-03-28 13:02:28 +00:00
parent 9d89a5f543
commit da400a38ed
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
View File
@@ -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);
}
}