summaryrefslogtreecommitdiff
path: root/noncore/apps
authordrw <drw>2002-12-30 16:24:19 (UTC)
committer drw <drw>2002-12-30 16:24:19 (UTC)
commit74fae7e68acd91e61bdff6f7703021246a0c1fbc (patch) (side-by-side diff)
tree41e9fdb306e858644b3f15e5dbc0b204009136b2 /noncore/apps
parent627b209bfde5670061e9119a2c3038fa542c351c (diff)
downloadopie-74fae7e68acd91e61bdff6f7703021246a0c1fbc.zip
opie-74fae7e68acd91e61bdff6f7703021246a0c1fbc.tar.gz
opie-74fae7e68acd91e61bdff6f7703021246a0c1fbc.tar.bz2
Use background color for alternating transaction lines (like todo does now).
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/checkbook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/checkbook/checkbook.cpp b/noncore/apps/checkbook/checkbook.cpp
index 7a6b7cc..5fe660c 100644
--- a/noncore/apps/checkbook/checkbook.cpp
+++ b/noncore/apps/checkbook/checkbook.cpp
@@ -603,25 +603,25 @@ CBListItem::CBListItem( QListView *parent, QString label1, QString label2,
}
void CBListItem::paintCell( QPainter *p, const QColorGroup &cg, int column, int width, int align )
{
QColorGroup _cg = cg;
const QPixmap *pm = listView()->viewport()->backgroundPixmap();
if ( pm && !pm->isNull() )
{
_cg.setBrush( QColorGroup::Base, QBrush( cg.base(), *pm ) );
p->setBrushOrigin( -listView()->contentsX(), -listView()->contentsY() );
}
else if ( isAltBackground() )
- _cg.setColor(QColorGroup::Base, QColor( 200, 255, 200 ) );
+ _cg.setColor(QColorGroup::Base, cg.background() );
QListViewItem::paintCell(p, _cg, column, width, align);
}
bool CBListItem::isAltBackground()
{
QListView *lv = static_cast<QListView *>( listView() );
if ( lv )
{
CBListItem *above = 0;
above = (CBListItem *)( itemAbove() );
m_known = above ? above->m_known : true;