diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-03 15:57:33 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-03 15:57:33 +0200 |
commit | 13b1b98f7cf8a3b3b2c15dd42f96537b02c00711 (patch) | |
tree | ff3a67221e90eb9aa067e0b0d1f934fd4dd28534 /AppVersion.h | |
parent | 2e0cbf393a5320dbf5448ca44a9b5905314b0be8 (diff) | |
download | MultiMC-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar MultiMC-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar.gz MultiMC-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar.lz MultiMC-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar.xz MultiMC-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.zip |
WTF, I don't even...
Diffstat (limited to 'AppVersion.h')
-rw-r--r-- | AppVersion.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/AppVersion.h b/AppVersion.h index 504f1d17..86f53950 100644 --- a/AppVersion.h +++ b/AppVersion.h @@ -20,14 +20,14 @@ /*! * \brief The Version class represents a MultiMC version number. */ -class Version : public QObject +class AppVersion : public QObject { Q_OBJECT public: - explicit Version(int major = 0, int minor = 0, int revision = 0, + explicit AppVersion(int major = 0, int minor = 0, int revision = 0, int build = 0, QObject *parent = 0); - Version(const Version& ver); + AppVersion(const AppVersion& ver); /*! * \brief Converts the Version to a string. @@ -60,6 +60,6 @@ public: */ int build; - static Version current; + static AppVersion current; }; |