diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-02 12:35:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-02 12:35:28 +0000 |
commit | e221f73e4a254a59f9c95460827dafb5b6b7e5df (patch) | |
tree | 46b17567b79894e481ddb35de6ee7af01e55da7f /plugins/KeyboardNotify/ignore.c | |
parent | 54e24c4eea6734678915d8c7384f4469f7c78be5 (diff) |
KeyboardNotify Unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@259 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/KeyboardNotify/ignore.c')
-rw-r--r-- | plugins/KeyboardNotify/ignore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/KeyboardNotify/ignore.c b/plugins/KeyboardNotify/ignore.c index b9d897b358..ededae2c84 100644 --- a/plugins/KeyboardNotify/ignore.c +++ b/plugins/KeyboardNotify/ignore.c @@ -266,10 +266,10 @@ INT_PTR CALLBACK DlgProcIgnoreOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPA { CLCINFOITEM cii = {0};
cii.cbSize = sizeof(cii);
cii.flags = CLCIIF_GROUPFONT;
- cii.pszText = Translate("** All contacts **");
+ cii.pszText = TranslateT("** All contacts **");
hItemAll=(HANDLE)SendDlgItemMessage(hwndDlg, IDC_LIST, CLM_ADDINFOITEM, 0, (LPARAM)&cii);
- cii.pszText = Translate("** Unknown contacts **");
+ cii.pszText = TranslateT("** Unknown contacts **");
hItemUnknown=(HANDLE)SendDlgItemMessage(hwndDlg, IDC_LIST,CLM_ADDINFOITEM, 0, (LPARAM)&cii);
InitialiseItem(GetDlgItem(hwndDlg, IDC_LIST), NULL, hItemUnknown, 0xFFFFFFFF);
}
|