diff options
| author | Brian Munro <brian.alexander.munro@gmail.com> | 2017-01-17 20:21:58 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-17 20:21:58 -0800 |
| commit | d63c164a748ef438a1e6b7919da1fc3eab6f0bfd (patch) | |
| tree | b105f5a36569ea207c6518059fe014e6bc56a307 /src/organizerproxy.cpp | |
| parent | d869d9978582668300478ccd84e251b17116b0e4 (diff) | |
| parent | 45cc67da05c57f3088e2b17e4c588905fda6c43c (diff) | |
Merge pull request #49 from ZachHaber/new_vfs_library
Loot Button & Overwrite
Diffstat (limited to 'src/organizerproxy.cpp')
| -rw-r--r-- | src/organizerproxy.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp index b6dbd242..cf2e29e3 100644 --- a/src/organizerproxy.cpp +++ b/src/organizerproxy.cpp @@ -37,9 +37,15 @@ QString OrganizerProxy::downloadsPath() const QString OrganizerProxy::overwritePath() const
{
- return QDir::fromNativeSeparators(qApp->property("dataPath").toString())
+ /*return QDir::fromNativeSeparators(qApp->property("dataPath").toString())
+ "/"
- + ToQString(AppConfig::overwritePath());
+ + ToQString(AppConfig::overwritePath());*/
+ return m_Proxied->overwritePath();
+}
+
+QString OrganizerProxy::basePath() const
+{
+ return m_Proxied->basePath();
}
VersionInfo OrganizerProxy::appVersion() const
|
