diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-10-19 09:18:42 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-10-19 09:18:42 +0000 |
commit | e8140be4be643eea3c1bac5da4f6a26e07fa218a (patch) | |
tree | be2cef936f596ddc8b88938130f4117a8fdffdef /src | |
parent | 77ae937c1ffcb7fb6f4b610baf4f7a3dd8410d54 (diff) |
variable name change
git-svn-id: http://svn.miranda-ng.org/main/trunk@10833 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/utils/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/utils/path.cpp b/src/modules/utils/path.cpp index 0bd1e79383..1031718867 100644 --- a/src/modules/utils/path.cpp +++ b/src/modules/utils/path.cpp @@ -307,7 +307,7 @@ XCHAR *GetInternalVariable(XCHAR *key, size_t keyLength, MCONTACT hContact) theValue = SHGetSpecialFolderPathX(CSIDL_PERSONAL, theKey);
else if (!_xcscmp(theKey, XSTR(key, "desktop")))
theValue = SHGetSpecialFolderPathX(CSIDL_DESKTOPDIRECTORY, theKey);
- else if (!_xcscmp(theKey, XSTR(key, "miranda_profile")))
+ else if (!_xcscmp(theKey, XSTR(key, "miranda_profilesdir")))
theValue = GetProfileDirX(key);
else if (!_xcscmp(theKey, XSTR(key, "miranda_profilename")))
theValue = GetProfileNameX(key);
|