formatting

This commit is contained in:
Vadim Kurland
2008-07-06 19:40:38 +00:00
parent 905e538acf
commit fdbd94444f
+3 -4
View File
@@ -1,6 +1,4 @@
#include "fwbuilder_ph.h"
#include "global.h"
#include "ColorCheckViewItem.h"
@@ -13,7 +11,9 @@
using namespace std;
using namespace libfwbuilder;
void ColorCheckViewItem::paintCell ( QPainter * p, const QColorGroup & cg, int column, int width, int align )
void ColorCheckViewItem::paintCell(QPainter * p,
const QColorGroup & cg,
int column, int width, int align )
{
if (!p) return;
QColorGroup c=cg;
@@ -22,6 +22,5 @@ void ColorCheckViewItem::paintCell ( QPainter * p, const QColorGroup & cg, int c
{
c.setBrush(QColorGroup::Base,QColor(240,255,240));
}
//QListWidgetItem::paintCell(p,c,column,width,align); TAPIR: this one was commented when no such method had been found for the QListWidgetItem class
}