From 819bd5be79b840dd8ed9cb1ddfb2a71840234eea Mon Sep 17 00:00:00 2001
From: George Hazan <george.hazan@gmail.com>
Date: Mon, 21 May 2012 21:32:41 +0000
Subject: fix for the version column's size

git-svn-id: http://svn.miranda-ng.org/main/trunk@124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 src/modules/plugins/newplugins.cpp | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

(limited to 'src/modules/plugins')

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
-- 
cgit v1.2.3