Formatting.
svn-id: r34927
This commit is contained in:
parent
203db86869
commit
1512fbd261
3 changed files with 5 additions and 5 deletions
|
@ -80,11 +80,11 @@ public:
|
||||||
|
|
||||||
virtual Widget *findWidget(int x, int y);
|
virtual Widget *findWidget(int x, int y);
|
||||||
|
|
||||||
void setList(const StringList& list);
|
void setList(const StringList &list);
|
||||||
const StringList& getList() const { return _list; }
|
const StringList &getList() const { return _list; }
|
||||||
int getSelected() const { return _selectedItem; }
|
int getSelected() const { return _selectedItem; }
|
||||||
void setSelected(int item);
|
void setSelected(int item);
|
||||||
const String& getSelectedString() const { return _list[_selectedItem]; }
|
const String &getSelectedString() const { return _list[_selectedItem]; }
|
||||||
void setNumberingMode(NumberingMode numberingMode) { _numberingMode = numberingMode; }
|
void setNumberingMode(NumberingMode numberingMode) { _numberingMode = numberingMode; }
|
||||||
bool isEditable() const { return _editable; }
|
bool isEditable() const { return _editable; }
|
||||||
void setEditable(bool editable) { _editable = editable; }
|
void setEditable(bool editable) { _editable = editable; }
|
||||||
|
|
|
@ -535,7 +535,7 @@ int SaveLoadChooser::runModal(const EnginePlugin *plugin, const String &target)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Common::String& SaveLoadChooser::getResultString() const {
|
const Common::String &SaveLoadChooser::getResultString() const {
|
||||||
return _list->getSelectedString();
|
return _list->getSelectedString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ public:
|
||||||
void setList(const StringList& list);
|
void setList(const StringList& list);
|
||||||
int runModal(const EnginePlugin *plugin, const String &target);
|
int runModal(const EnginePlugin *plugin, const String &target);
|
||||||
|
|
||||||
const Common::String& getResultString() const;
|
const Common::String &getResultString() const;
|
||||||
void setSaveMode(bool saveMode);
|
void setSaveMode(bool saveMode);
|
||||||
|
|
||||||
virtual void reflowLayout();
|
virtual void reflowLayout();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue