diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-13 17:33:22 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-13 17:33:22 +0300 |
commit | bf9ba2646d72eaa9e619bbda23654d0a3c90fba2 (patch) | |
tree | 1528a1937badda275e06de652f8c5dd793844f0a /main.cpp | |
parent | 0bd63f75bacf28fa379c59ce270d27cb4dd47eb6 (diff) |
fix double messages in metacontacts (untested)
better handling for uncommon keys (untested)
improoved translations support (untested, should work)
Diffstat (limited to 'main.cpp')
-rwxr-xr-x | main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -41,32 +41,32 @@ static INT_PTR CALLBACK DlgProcFirstRun(HWND hwndDlg,UINT msg,WPARAM wParam,LPAR { SetWindowPos(hwndDlg, 0, firstrun_rect.left, firstrun_rect.top, 0, 0, SWP_NOSIZE|SWP_SHOWWINDOW); TranslateDialogDefault(hwndDlg); - SetWindowText(hwndDlg, TranslateW(_T("Set own key"))); + SetWindowText(hwndDlg, TranslateT("Set own key")); col.pszText = _T("Key ID"); col.mask = LVCF_TEXT | LVCF_WIDTH; col.fmt = LVCFMT_LEFT; col.cx = 50; ListView_InsertColumn(hwndList, 0, &col); ZeroMemory(&col,sizeof(col)); - col.pszText = TranslateW(_T("Email")); + col.pszText = TranslateT("Email"); col.mask = LVCF_TEXT | LVCF_WIDTH; col.fmt = LVCFMT_LEFT; col.cx = 30; ListView_InsertColumn(hwndList, 1, &col); ZeroMemory(&col,sizeof(col)); - col.pszText = TranslateW(_T("Name")); + col.pszText = TranslateT("Name"); col.mask = LVCF_TEXT | LVCF_WIDTH; col.fmt = LVCFMT_LEFT; col.cx = 250; ListView_InsertColumn(hwndList, 2, &col); ZeroMemory(&col,sizeof(col)); - col.pszText = TranslateW(_T("Creation date")); + col.pszText = TranslateT("Creation date"); col.mask = LVCF_TEXT | LVCF_WIDTH; col.fmt = LVCFMT_LEFT; col.cx = 30; ListView_InsertColumn(hwndList, 3, &col); ZeroMemory(&col,sizeof(col)); - col.pszText = TranslateW(_T("Key length")); + col.pszText = TranslateT("Key length"); col.mask = LVCF_TEXT | LVCF_WIDTH; col.fmt = LVCFMT_LEFT; col.cx = 30; |