diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-03-02 03:03:44 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-03-02 09:16:58 +0100 |
commit | b54839b8976b5c1455c838828f2bc92cdeb178eb (patch) | |
tree | 35919484c98a541aff87622aef30bee37ef464cf /logic/minecraft/MinecraftProfile.h | |
parent | 80b81c2c1e2185b457d167d3d446ac2e1ca95579 (diff) | |
download | MultiMC-b54839b8976b5c1455c838828f2bc92cdeb178eb.tar MultiMC-b54839b8976b5c1455c838828f2bc92cdeb178eb.tar.gz MultiMC-b54839b8976b5c1455c838828f2bc92cdeb178eb.tar.lz MultiMC-b54839b8976b5c1455c838828f2bc92cdeb178eb.tar.xz MultiMC-b54839b8976b5c1455c838828f2bc92cdeb178eb.zip |
NOISSUE eliminate timestamp strings
Diffstat (limited to 'logic/minecraft/MinecraftProfile.h')
-rw-r--r-- | logic/minecraft/MinecraftProfile.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/logic/minecraft/MinecraftProfile.h b/logic/minecraft/MinecraftProfile.h index 2a97f037..25663c74 100644 --- a/logic/minecraft/MinecraftProfile.h +++ b/logic/minecraft/MinecraftProfile.h @@ -121,12 +121,10 @@ public: /* data */ /// the ID - determines which jar to use! ACTUALLY IMPORTANT! QString id; - /// the time this version was actually released by Mojang, as string and as QDateTime - QString m_releaseTimeString; + /// the time this version was actually released by Mojang QDateTime m_releaseTime; - /// the time this version was last updated by Mojang, as string and as QDateTime - QString m_updateTimeString; + /// the time this version was last updated by Mojang QDateTime m_updateTime; /// Release type - "release" or "snapshot" |