aboutsummaryrefslogtreecommitdiff
path: root/gui/themebrowser.h
diff options
context:
space:
mode:
authorMax Horn2008-12-27 16:09:08 +0000
committerMax Horn2008-12-27 16:09:08 +0000
commitc5cabc7b2aba18b12270986a265469f72166b7e0 (patch)
tree5f0a0d58ec228d8a448d342c937dfb89abcd5e4b /gui/themebrowser.h
parent1d099c0d402a23def85839f4759558700fcd1ad1 (diff)
downloadscummvm-rg350-c5cabc7b2aba18b12270986a265469f72166b7e0.tar.gz
scummvm-rg350-c5cabc7b2aba18b12270986a265469f72166b7e0.tar.bz2
scummvm-rg350-c5cabc7b2aba18b12270986a265469f72166b7e0.zip
Renamed some stuff
svn-id: r35574
Diffstat (limited to 'gui/themebrowser.h')
-rw-r--r--gui/themebrowser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gui/themebrowser.h b/gui/themebrowser.h
index c33e239110..477034d5be 100644
--- a/gui/themebrowser.h
+++ b/gui/themebrowser.h
@@ -42,22 +42,22 @@ public:
void open();
void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
- const Common::String &selected() const { return _select; }
+ const Common::String &getSelected() const { return _select; }
private:
- struct Entry {
+ struct ThemeDescriptor {
Common::String name;
Common::String file;
};
ListWidget *_fileList;
Common::String _select;
- typedef Common::Array<Entry> ThList;
- ThList _themes;
+ typedef Common::Array<ThemeDescriptor> ThemeDescList;
+ ThemeDescList _themes;
void updateListing();
- void addDir(ThList &list, const Common::FSNode &node);
- bool isTheme(const Common::FSNode &node, Entry &out);
+ void addDir(ThemeDescList &list, const Common::FSNode &node);
+ bool isTheme(const Common::FSNode &node, ThemeDescriptor &out);
};
} // end of namespace GUI