diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-06 19:12:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-06 19:12:45 +0000 |
commit | 15fd89ff52746c621c4a262710da4de6e8968bbd (patch) | |
tree | ae642112deefa6c08ce6817545bf65be672c32cf /plugins/TabSRMM/src/mim.cpp | |
parent | 016dcc406261b545bac4929910ff503f30e06859 (diff) |
fix for the default log path in tabSRMM
git-svn-id: http://svn.miranda-ng.org/main/trunk@4347 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/mim.cpp')
-rw-r--r-- | plugins/TabSRMM/src/mim.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/mim.cpp b/plugins/TabSRMM/src/mim.cpp index 74241bd7fd..065bde4837 100644 --- a/plugins/TabSRMM/src/mim.cpp +++ b/plugins/TabSRMM/src/mim.cpp @@ -400,6 +400,10 @@ void CMimAPI::InitPaths() lstrcpyn(m_szChatLogsPath, VARST(_T("%miranda_logpath%")), MAX_PATH);
lstrcpyn(m_szSkinsPath, VARST(_T("%miranda_path%\\Skins\\TabSRMM")), MAX_PATH);
}
+
+ Utils::ensureTralingBackslash(m_szChatLogsPath);
+ Utils::ensureTralingBackslash(m_szSkinsPath);
+
mir_sntprintf(m_szSavedAvatarsPath, MAX_PATH, _T("%s\\Saved Contact Pictures"), m_szProfilePath);
}
|