diff options
Diffstat (limited to 'plugins/Import')
-rw-r--r-- | plugins/Import/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/Import/src/import.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Import/res/resource.rc b/plugins/Import/res/resource.rc index af948610fc..5f10bdcc0b 100644 --- a/plugins/Import/res/resource.rc +++ b/plugins/Import/res/resource.rc @@ -127,7 +127,7 @@ END IDD_ACCMERGE DIALOGEX 0, 0, 312, 150
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Account merge"
+CAPTION "Choose appropriate accounts for import"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK",IDOK,204,132,50,16
diff --git a/plugins/Import/src/import.cpp b/plugins/Import/src/import.cpp index 507936a201..dbb63564df 100644 --- a/plugins/Import/src/import.cpp +++ b/plugins/Import/src/import.cpp @@ -308,7 +308,7 @@ static INT_PTR CALLBACK AccountsMatcherProc(HWND hwndDlg, UINT uMsg, WPARAM wPar LVCOLUMN col = { 0 };
col.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_FMT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
- col.cx = 100;
+ col.cx = 140;
col.pszText = TranslateT("Old account");
ListView_InsertColumn(hwndList, 0, &col);
|