diff options
Diffstat (limited to 'korganizer/kotodoviewitem.cpp')
-rw-r--r-- | korganizer/kotodoviewitem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/kotodoviewitem.cpp b/korganizer/kotodoviewitem.cpp index e7fad7dae..1e13f8a6a 100644 --- a/korganizer/kotodoviewitem.cpp +++ b/korganizer/kotodoviewitem.cpp @@ -268,11 +268,11 @@ void KOTodoViewItem::paintCell(TQPainter *p, const TQColorGroup &cg, int column, int progress = (int)(( (width-6)*mTodo->percentComplete())/100.0 + 0.5); p->fillRect( 0, 0, width, height(), _cg.base() ); // background - p->setPen( KGlobalSettings::textColor() ); //border - p->setBrush( KGlobalSettings::baseColor() ); //filling + p->setPen( TDEGlobalSettings::textColor() ); //border + p->setBrush( TDEGlobalSettings::baseColor() ); //filling p->drawRect( 2, 2, width-4, height()-4); p->fillRect( 3, 3, progress, height()-6, - KGlobalSettings::highlightColor() ); + TDEGlobalSettings::highlightColor() ); p->restore(); } else { TQCheckListItem::paintCell(p, _cg, column, width, alignment); |