diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-06-19 09:52:35 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-06-19 09:52:35 +0000 |
commit | b134cf24b50ace7651361d3dc07ab53403dc501d (patch) | |
tree | 39eed28275b5455f29c30fbc53ec95d51d9421c9 /plugins/DbEditorPP/src | |
parent | 02657a8774b41076727635e3daf87d4321573dc7 (diff) |
DbEditorPP: translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14254 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src')
-rw-r--r-- | plugins/DbEditorPP/src/findwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbEditorPP/src/findwindow.cpp b/plugins/DbEditorPP/src/findwindow.cpp index 235cf0f6ea..6481fcf027 100644 --- a/plugins/DbEditorPP/src/findwindow.cpp +++ b/plugins/DbEditorPP/src/findwindow.cpp @@ -73,7 +73,7 @@ INT_PTR CALLBACK FindWindowDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP {
switch (msg) {
case WM_INITDIALOG:
- SendDlgItemMessage(hwnd, IDC_SBAR, SB_SETTEXT, 0, (LPARAM)LPGENT("Enter a string to search the database for"));
+ SendDlgItemMessage(hwnd, IDC_SBAR, SB_SETTEXT, 0, (LPARAM)TranslateT("Enter a string to search the database for"));
CheckDlgButton(hwnd, IDC_MODNAME, BST_CHECKED);
CheckDlgButton(hwnd, IDC_SETTINGNAME, BST_CHECKED);
CheckDlgButton(hwnd, IDC_SETTINGVALUE, BST_CHECKED);
|