summaryrefslogtreecommitdiffstats
path: root/logic/OneSixUpdate.h
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2014-02-21 19:15:59 +0100
committerJan Dalheimer <jan@dalheimer.de>2014-02-21 19:15:59 +0100
commit4883d1526222f9804f304f4cc189d6e44cb22b97 (patch)
tree3337cb34d9fdf4947c30b6e36f7747782cb212d4 /logic/OneSixUpdate.h
parentf54705e1c5311e023b2e1ebd5d4db226a7c7149e (diff)
downloadMultiMC-4883d1526222f9804f304f4cc189d6e44cb22b97.tar
MultiMC-4883d1526222f9804f304f4cc189d6e44cb22b97.tar.gz
MultiMC-4883d1526222f9804f304f4cc189d6e44cb22b97.tar.lz
MultiMC-4883d1526222f9804f304f4cc189d6e44cb22b97.tar.xz
MultiMC-4883d1526222f9804f304f4cc189d6e44cb22b97.zip
Copying of FTB instances working again
Diffstat (limited to 'logic/OneSixUpdate.h')
-rw-r--r--logic/OneSixUpdate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/logic/OneSixUpdate.h b/logic/OneSixUpdate.h
index 3c18211e..eac882b5 100644
--- a/logic/OneSixUpdate.h
+++ b/logic/OneSixUpdate.h
@@ -23,13 +23,13 @@
#include "logic/tasks/Task.h"
class MinecraftVersion;
-class BaseInstance;
+class OneSixInstance;
class OneSixUpdate : public Task
{
Q_OBJECT
public:
- explicit OneSixUpdate(BaseInstance *inst, QObject *parent = 0);
+ explicit OneSixUpdate(OneSixInstance *inst, QObject *parent = 0);
virtual void executeTask();
private
@@ -55,5 +55,5 @@ private:
// target version, determined during this task
std::shared_ptr<MinecraftVersion> targetVersion;
- BaseInstance *m_inst = nullptr;
+ OneSixInstance *m_inst = nullptr;
};