diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-21 21:32:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-21 21:32:41 +0000 |
commit | 819bd5be79b840dd8ed9cb1ddfb2a71840234eea (patch) | |
tree | 4d5d36f398f8eeb23e1a308be0ed4cb904df8351 | |
parent | c4ba8af1dbc6a50001bb5a720c1e5018b18ffd1c (diff) |
fix for the version column's size
git-svn-id: http://svn.miranda-ng.org/main/trunk@124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/plugins/newplugins.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/modules/plugins/newplugins.cpp b/src/modules/plugins/newplugins.cpp index 80dddc00dd..14cafcea4a 100644 --- a/src/modules/plugins/newplugins.cpp +++ b/src/modules/plugins/newplugins.cpp @@ -830,19 +830,19 @@ INT_PTR CALLBACK DlgPluginOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar col.mask = LVCF_TEXT | LVCF_WIDTH;
col.pszText = TranslateT("Plugin");
col.cx = 70;//max = 140;
- ListView_InsertColumn(hwndList,0,&col);
+ ListView_InsertColumn(hwndList, 0, &col);
- col.pszText=TranslateT("Name");
+ col.pszText = TranslateT("Name");
col.cx = 70;//max = 220;
- ListView_InsertColumn(hwndList,1,&col);
+ ListView_InsertColumn(hwndList, 1, &col);
- col.pszText=TranslateT("Version");
- col.cx=55;
- ListView_InsertColumn(hwndList,2,&col);
+ col.pszText = TranslateT("Version");
+ col.cx = 70;
+ ListView_InsertColumn(hwndList, 2, &col);
- col.pszText=_T("");
- col.cx=20;
- ListView_InsertColumn(hwndList,3,&col);
+ col.pszText = _T("");
+ col.cx = 20;
+ ListView_InsertColumn(hwndList, 3, &col);
//ListView_InsertColumn(hwndList,4,&col);
// XXX: Won't work on windows 95 without IE3+ or 4.70
|