summaryrefslogtreecommitdiff
path: root/src/organizerproxy.cpp
diff options
context:
space:
mode:
authorBrian Munro <brian.alexander.munro@gmail.com>2017-03-29 02:44:31 -0700
committerGitHub <noreply@github.com>2017-03-29 02:44:31 -0700
commit822534e16a421520b7abdf0b698948eb2df88a63 (patch)
tree16c61060a8aef581d0b322573c63ae6400ebbe86 /src/organizerproxy.cpp
parent99156abc6e0779ed3de437c0005b6de8293c7a15 (diff)
parentc64e12a289066c6b4834c43a49ff631a33b2f3ce (diff)
Merge pull request #69 from LePresidente/new_vfs_library
Bring in line with main branch
Diffstat (limited to 'src/organizerproxy.cpp')
-rw-r--r--src/organizerproxy.cpp10
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