summaryrefslogtreecommitdiffstats
path: root/korganizer/koagendaitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koagendaitem.cpp')
-rw-r--r--korganizer/koagendaitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/korganizer/koagendaitem.cpp b/korganizer/koagendaitem.cpp
index b9558c39..86dc54a7 100644
--- a/korganizer/koagendaitem.cpp
+++ b/korganizer/koagendaitem.cpp
@@ -624,7 +624,7 @@ void KOAgendaItem::setConflictItems( TQPtrList<KOAgendaItem> ci )
void KOAgendaItem::addConflictItem( KOAgendaItem *ci )
{
- if ( mConflictItems.tqfind( ci ) < 0 ) mConflictItems.append( ci );
+ if ( mConflictItems.find( ci ) < 0 ) mConflictItems.append( ci );
}
TQString KOAgendaItem::label() const
@@ -986,7 +986,7 @@ void KOAgendaItem::paintEvent( TQPaintEvent *ev )
p.setBackgroundColor( bgColor );
p.setPen( textColor );
TQString ws = ww->wrappedString();
- if ( ws.left( ws.length()-1 ).tqfind( '\n' ) >= 0 )
+ if ( ws.left( ws.length()-1 ).find( '\n' ) >= 0 )
ww->drawText( &p, eventX, y,
TQt::AlignAuto | KWordWrap::FadeOut );
else