diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-06-23 22:10:32 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-06-23 22:10:32 +0200 |
commit | 27b1de0d6d196d9d0f6c284e0cb772c077688c3e (patch) | |
tree | daf8998763f549c28cac6be272fe50f70c00be0d /libmultimc/include/instversion.h | |
parent | d9195bff3a6088bb0f116d61fc8c961e3ba4e3f2 (diff) | |
download | MultiMC-27b1de0d6d196d9d0f6c284e0cb772c077688c3e.tar MultiMC-27b1de0d6d196d9d0f6c284e0cb772c077688c3e.tar.gz MultiMC-27b1de0d6d196d9d0f6c284e0cb772c077688c3e.tar.lz MultiMC-27b1de0d6d196d9d0f6c284e0cb772c077688c3e.tar.xz MultiMC-27b1de0d6d196d9d0f6c284e0cb772c077688c3e.zip |
Implement some bits and pieces, disable dead buttons.
Diffstat (limited to 'libmultimc/include/instversion.h')
-rw-r--r-- | libmultimc/include/instversion.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libmultimc/include/instversion.h b/libmultimc/include/instversion.h index 009bd412..af632939 100644 --- a/libmultimc/include/instversion.h +++ b/libmultimc/include/instversion.h @@ -50,18 +50,6 @@ class LIBMULTIMC_EXPORT InstVersion : public QObject Q_PROPERTY(QString typeName READ typeName) /*! - * Whether or not this is a meta version. - * Meta versions are not real versions, merely versions that act as aliases - * for other versions. - * For example: There could be a meta version called "Latest" that always - * points to the latest version. The user would pick this version and when - * a new version came out, it would point to the new one and update the instance - * automatically. - */ - Q_PROPERTY(bool isMeta READ isMeta) - - - /*! * Gets the version's timestamp. * This is primarily used for sorting versions in a list. */ @@ -93,7 +81,6 @@ public: virtual QString name() const; virtual QString typeName() const = 0; virtual qint64 timestamp() const; - virtual bool isMeta() const; virtual InstVersionList *versionList() const; |