diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-13 17:02:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-13 17:02:40 +0000 |
commit | b21fd1d8a8e9bb3244f89c4030f0651aa82c3a81 (patch) | |
tree | e3a58d715c156be744f2083daaf125311ddd35c8 /plugins/TabSRMM/src/containeroptions.cpp | |
parent | bb0c52985eccfae809a08bb72938b863bc546032 (diff) |
- ansi messages removed;
- strange dances with tambourines also removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11369 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/containeroptions.cpp')
-rw-r--r-- | plugins/TabSRMM/src/containeroptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/containeroptions.cpp b/plugins/TabSRMM/src/containeroptions.cpp index b4ee63b512..be0caeb815 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -338,8 +338,8 @@ INT_PTR CALLBACK DlgProcContainerOptions(HWND hwndDlg, UINT msg, WPARAM wParam, pContainer->szRelThemeFile[0] = pContainer->szAbsThemeFile[0] = 0;
- if (GetWindowTextLengthA(GetDlgItem(hwndDlg, IDC_THEME)) > 0) {
- wchar_t szFinalThemeFile[MAX_PATH], szFilename[MAX_PATH];
+ if (GetWindowTextLength(GetDlgItem(hwndDlg, IDC_THEME)) > 0) {
+ wchar_t szFinalThemeFile[MAX_PATH], szFilename[MAX_PATH];
GetDlgItemText(hwndDlg, IDC_THEME, szFilename, SIZEOF(szFilename));
szFilename[MAX_PATH - 1] = 0;
|