summaryrefslogtreecommitdiff
path: root/src/createinstancedialog.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-11-06 11:37:12 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2020-11-07 20:16:25 -0500
commitb7cb63ddb1e2b263d5e485c97faea527c7c0af44 (patch)
treed81197308fc863ed32caf64665a8bfe3e0443b6d /src/createinstancedialog.cpp
parent93e8488a63ea3d63a67df739bbf4ed0ce67e372b (diff)
removed some redundant functions in InstanceManager, made them all non-static
documentation
Diffstat (limited to 'src/createinstancedialog.cpp')
-rw-r--r--src/createinstancedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/createinstancedialog.cpp b/src/createinstancedialog.cpp
index 2ff8adf3..13dd200c 100644
--- a/src/createinstancedialog.cpp
+++ b/src/createinstancedialog.cpp
@@ -443,7 +443,7 @@ QString CreateInstanceDialog::dataPath() const
QString s;
if (instanceType() == Portable) {
- s = QDir(InstanceManager::portablePath()).absolutePath();
+ s = QDir(InstanceManager::singleton().portablePath()).absolutePath();
} else {
s = InstanceManager::singleton().instancePath(instanceName());
}