summaryrefslogtreecommitdiff
path: root/shared/standardPaths.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
commit8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395 (patch)
tree975c6e590c31e56007006a23e7b15d0245d75b08 /shared/standardPaths.cpp
parent3.6 (diff)
downloadFreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.gz
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.bz2
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.zip
3.7
Diffstat (limited to 'shared/standardPaths.cpp')
-rw-r--r--shared/standardPaths.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/standardPaths.cpp b/shared/standardPaths.cpp
index 018e31d0..e442c865 100644
--- a/shared/standardPaths.cpp
+++ b/shared/standardPaths.cpp
@@ -43,7 +43,7 @@ const wxString& FreeFileSync::getResourceDir()
isInitalized = true;
if (isPortableVersion())
- return getBinaryDir();
+ resourceDir = getBinaryDir();
else //use OS' standard paths
{
resourceDir = wxStandardPathsBase::Get().GetResourcesDir();
bgstack15