diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-04 15:15:55 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-04 15:15:55 +0000 |
commit | 419f192d3e4c52ace067722bcfd85904b7c2628b (patch) | |
tree | dd0e423016cc614f6cb27f1aec8d1e1c2980c853 /plugins/TabSRMM/src/chat/options.cpp | |
parent | 801a035b524badd53b9e90460a6420d5f08fa2e4 (diff) |
tabSRMM:
- own path service functions replaced with the core ones;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@9675 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/options.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat/options.cpp b/plugins/TabSRMM/src/chat/options.cpp index ea72e9cc64..0040e69b2f 100644 --- a/plugins/TabSRMM/src/chat/options.cpp +++ b/plugins/TabSRMM/src/chat/options.cpp @@ -888,7 +888,7 @@ INT_PTR CALLBACK DlgProcOptions2(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lstrcat(tszDirectory, _T("\\"));
TCHAR tszTemp[MAX_PATH];
- M.pathToRelative(tszDirectory, tszTemp, const_cast<TCHAR *>(szUserDir));
+ PathToRelativeT(tszDirectory, tszTemp, szUserDir);
SetWindowText(GetDlgItem(hwndDlg, IDC_LOGDIRECTORY), lstrlen(tszTemp) > 1 ? tszTemp : DEFLOGFILENAME);
}
psMalloc->Free(idList);
|