summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-01-15 18:46:27 -0600
committerAndrew <forkk@forkk.net>2013-01-15 18:46:27 -0600
commitf7e9a7523fdd8c9e2aaaf59f36fc4a702690b760 (patch)
tree83f8a441ec16cc5aed4b5e4e14b93351a9c6a3da /data
parentfce0f5df045f1d956cabeda41406001a037c9ab7 (diff)
downloadMultiMC-f7e9a7523fdd8c9e2aaaf59f36fc4a702690b760.tar
MultiMC-f7e9a7523fdd8c9e2aaaf59f36fc4a702690b760.tar.gz
MultiMC-f7e9a7523fdd8c9e2aaaf59f36fc4a702690b760.tar.lz
MultiMC-f7e9a7523fdd8c9e2aaaf59f36fc4a702690b760.tar.xz
MultiMC-f7e9a7523fdd8c9e2aaaf59f36fc4a702690b760.zip
Added settings dialog.
Diffstat (limited to 'data')
-rw-r--r--data/stdinstance.cpp4
-rw-r--r--data/stdinstance.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/data/stdinstance.cpp b/data/stdinstance.cpp
index 8bb74097..1324b510 100644
--- a/data/stdinstance.cpp
+++ b/data/stdinstance.cpp
@@ -15,8 +15,8 @@
#include "stdinstance.h"
-StdInstance::StdInstance(QString dir) :
- InstanceBase(dir)
+StdInstance::StdInstance(QString rootDir) :
+ InstanceBase(rootDir)
{
}
diff --git a/data/stdinstance.h b/data/stdinstance.h
index 0bb8a0c3..59b1c8ab 100644
--- a/data/stdinstance.h
+++ b/data/stdinstance.h
@@ -22,7 +22,7 @@
class StdInstance : public InstanceBase
{
public:
- StdInstance(QString dir);
+ explicit StdInstance(QString rootDir);
};
#endif // STDINSTANCE_H