diff options
author | Tobias Weimer <tweimer@users.noreply.github.com> | 2018-08-31 18:04:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 18:04:50 +0200 |
commit | 59005227c6fced3a9d40e82c4512264ebf1cd210 (patch) | |
tree | eab7fda757001f19a40f41900cfc6a49e41ad922 /plugins/Msg_Export/src/FileViewer.cpp | |
parent | 0f3f2ee2e5b0bb816e9c9f7d457bba4505f065d8 (diff) |
Msg_Export
- No need to translate OutputDebugString
Diffstat (limited to 'plugins/Msg_Export/src/FileViewer.cpp')
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index c8949c5d39..418fa7ac58 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -532,7 +532,7 @@ bool bLoadFile(HWND hwndDlg, CLHistoryDlg *pclDlg) if (!bScrollToBottom)
SendMessage(hRichEdit, EM_SETSCROLLPOS, 0, (LPARAM)&ptOldPos);
- mir_snwprintf(szTmp, TranslateT("With scroll to bottom %d\n"), GetTickCount() - dwStart);
+ mir_snwprintf(szTmp, L"With scroll to bottom %d\n", GetTickCount() - dwStart);
OutputDebugString(szTmp);
return true;
}
|