diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-11-04 00:11:20 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-11-04 00:11:20 +0100 |
commit | d6e4fb29713d6ce55b092c0e22412f6121e7f516 (patch) | |
tree | ce4c2c3a2786bdbb9752c26d6feaab3735ba9bd6 /MultiMC.h | |
parent | 44669290747b1d254d10c130e4e728051c8c4c5d (diff) | |
download | MultiMC-d6e4fb29713d6ce55b092c0e22412f6121e7f516.tar MultiMC-d6e4fb29713d6ce55b092c0e22412f6121e7f516.tar.gz MultiMC-d6e4fb29713d6ce55b092c0e22412f6121e7f516.tar.lz MultiMC-d6e4fb29713d6ce55b092c0e22412f6121e7f516.tar.xz MultiMC-d6e4fb29713d6ce55b092c0e22412f6121e7f516.zip |
Implement instance sorting options.
Diffstat (limited to 'MultiMC.h')
-rw-r--r-- | MultiMC.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -23,6 +23,15 @@ class JavaVersionList; #endif #define MMC (static_cast<MultiMC *>(QCoreApplication::instance())) +// FIXME: possibly move elsewhere +enum InstSortMode +{ + // Sort alphabetically by name. + Sort_Name, + // Sort by which instance was launched most recently. + Sort_LastLaunch, +}; + class MultiMC : public QApplication { Q_OBJECT |