diff options
Diffstat (limited to 'kbugbuster/gui/buglvi.cpp')
-rw-r--r-- | kbugbuster/gui/buglvi.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbugbuster/gui/buglvi.cpp b/kbugbuster/gui/buglvi.cpp index 18d7c064..7026bd29 100644 --- a/kbugbuster/gui/buglvi.cpp +++ b/kbugbuster/gui/buglvi.cpp @@ -27,8 +27,8 @@ using namespace KBugBusterMainWindow; -BugLVI::BugLVI( KListView *parent , const Bug &bug ) -: KListViewItem( parent, bug.number() + " ", +BugLVI::BugLVI( TDEListView *parent , const Bug &bug ) +: TDEListViewItem( parent, bug.number() + " ", i18n( "1 day", "%n days", bug.age() ), bug.title(), //KStringHandler::csqueeze( bug.title(), 70 ), Bug::statusLabel( bug.status() ), @@ -97,7 +97,7 @@ void BugLVI::paintCell(TQPainter* p, const TQColorGroup& cg, newCg.setColor( TQColorGroup::Text, cg.color( TQColorGroup::Dark ) ); } - KListViewItem::paintCell( p, newCg, column, width, align ); + TDEListViewItem::paintCell( p, newCg, column, width, align ); } void BugLVI::setCommandState( BugCommand::State state) |