diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-03 11:13:28 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-03 11:41:54 -0500 |
| commit | fb2cddd92a1f09fef22dc66c737aa608408aaa18 (patch) | |
| tree | 17fb9453c766e821c6dbbd00aea3d02bc2f3ae1e /src/createinstancedialog.h | |
| parent | 1d97d914f1de0404b5b4db1bfdeff35ed94ea422 (diff) | |
replace "create instance" title by "setting up instance"
fixed bad game location for custom paths
Diffstat (limited to 'src/createinstancedialog.h')
| -rw-r--r-- | src/createinstancedialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/createinstancedialog.h b/src/createinstancedialog.h index 6947f2e2..f05495c6 100644 --- a/src/createinstancedialog.h +++ b/src/createinstancedialog.h @@ -58,7 +58,7 @@ public: Settings* settings(); template <class Page> - void setSinglePage() + void setSinglePage(const QString& instanceName) { for (auto&& p : m_pages) { if (auto* tp=dynamic_cast<Page*>(p.get())) { @@ -68,7 +68,7 @@ public: } } - setSinglePageImpl(); + setSinglePageImpl(instanceName); } template <class Page> @@ -113,7 +113,7 @@ private: bool m_singlePage; - void setSinglePageImpl(); + void setSinglePageImpl(const QString& instanceName); template <class T> T getSelected(T (cid::Page::*mf)() const) const |
