summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/MinecraftInstance.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2020-06-27 12:02:31 +0200
committerPetr Mrázek <peterix@gmail.com>2020-06-27 12:02:31 +0200
commita0ef20a264656c127dd62eb9140e89a2fda6a8e0 (patch)
tree43b9262f501e9ec835939ec50cc23473e661b291 /api/logic/minecraft/MinecraftInstance.h
parent4ca62916f562ca2d233d0fb4771054a106f1afc3 (diff)
downloadMultiMC-a0ef20a264656c127dd62eb9140e89a2fda6a8e0.tar
MultiMC-a0ef20a264656c127dd62eb9140e89a2fda6a8e0.tar.gz
MultiMC-a0ef20a264656c127dd62eb9140e89a2fda6a8e0.tar.lz
MultiMC-a0ef20a264656c127dd62eb9140e89a2fda6a8e0.tar.xz
MultiMC-a0ef20a264656c127dd62eb9140e89a2fda6a8e0.zip
NOISSUE rename ComponentList to PackProfile
It's not just components, so the naming needed cleaning up.
Diffstat (limited to 'api/logic/minecraft/MinecraftInstance.h')
-rw-r--r--api/logic/minecraft/MinecraftInstance.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/logic/minecraft/MinecraftInstance.h b/api/logic/minecraft/MinecraftInstance.h
index a8f64109..985a8a76 100644
--- a/api/logic/minecraft/MinecraftInstance.h
+++ b/api/logic/minecraft/MinecraftInstance.h
@@ -10,7 +10,7 @@ class ModFolderModel;
class WorldList;
class GameOptions;
class LaunchStep;
-class ComponentList;
+class PackProfile;
class MULTIMC_LOGIC_EXPORT MinecraftInstance: public BaseInstance
{
@@ -64,7 +64,7 @@ public:
////// Profile management //////
- std::shared_ptr<ComponentList> getComponentList() const;
+ std::shared_ptr<PackProfile> getPackProfile() const;
////// Mod Lists //////
std::shared_ptr<ModFolderModel> loaderModList() const;
@@ -120,7 +120,7 @@ private:
QString prettifyTimeDuration(int64_t duration);
protected: // data
- std::shared_ptr<ComponentList> m_components;
+ std::shared_ptr<PackProfile> m_components;
mutable std::shared_ptr<ModFolderModel> m_loader_mod_list;
mutable std::shared_ptr<ModFolderModel> m_core_mod_list;
mutable std::shared_ptr<ModFolderModel> m_resource_pack_list;