diff options
| author | ZachHaber <zhaber2@illinois.edu> | 2017-01-17 16:30:42 -0600 |
|---|---|---|
| committer | ZachHaber <zhaber2@illinois.edu> | 2017-01-17 16:30:42 -0600 |
| commit | 4149ce4cdb43fdf5c4ac6cd9cd317912fe40d683 (patch) | |
| tree | 63a3bfc7b9e7a0ff0d0a632a9de92a7f4e529a85 /src/organizerproxy.cpp | |
| parent | f2b33d75cb147965306e075f0b921cbad6c04334 (diff) | |
Fixing overwrite problems
Changes the organizerproxy to pull from the settings rather than try and
figure it out on its own.
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
|
