summaryrefslogtreecommitdiffstats
path: root/libmultimc/include/instancetypeinterface.h
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-05-03 14:41:37 -0500
committerAndrew <forkk@forkk.net>2013-05-03 14:41:37 -0500
commit055198303c7bf15f456687838c37650871596946 (patch)
tree6c745d0d4cf3f9da25f6552138a07870544dd642 /libmultimc/include/instancetypeinterface.h
parent1626fa013c86dc9f30254f57b3518211f6d0c65a (diff)
downloadMultiMC-055198303c7bf15f456687838c37650871596946.tar
MultiMC-055198303c7bf15f456687838c37650871596946.tar.gz
MultiMC-055198303c7bf15f456687838c37650871596946.tar.lz
MultiMC-055198303c7bf15f456687838c37650871596946.tar.xz
MultiMC-055198303c7bf15f456687838c37650871596946.zip
Removed old plugin system and implemented some version list stuff.
Diffstat (limited to 'libmultimc/include/instancetypeinterface.h')
-rw-r--r--libmultimc/include/instancetypeinterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmultimc/include/instancetypeinterface.h b/libmultimc/include/instancetypeinterface.h
index ba13f820..4fbc2593 100644
--- a/libmultimc/include/instancetypeinterface.h
+++ b/libmultimc/include/instancetypeinterface.h
@@ -75,7 +75,7 @@ protected:
* TypeNotRegistered if the given type is not registered with the InstanceLoader.
* InstExists if the given instance directory is already an instance.
*/
- virtual InstanceLoader::InstTypeError createInstance(Instance *&inst, const QString &instDir) const = 0;
+ virtual InstanceLoader::InstLoaderError createInstance(Instance *&inst, const QString &instDir) const = 0;
/*!
* \brief Loads an instance from the given directory.
@@ -86,7 +86,7 @@ protected:
* NotAnInstance if the given instance directory isn't a valid instance.
* WrongInstType if the given instance directory's type isn't an instance of this type.
*/
- virtual InstanceLoader::InstTypeError loadInstance(Instance *&inst, const QString &instDir) const = 0;
+ virtual InstanceLoader::InstLoaderError loadInstance(Instance *&inst, const QString &instDir) const = 0;
};
Q_DECLARE_INTERFACE(InstanceTypeInterface, InstanceTypeInterface_IID)