summaryrefslogtreecommitdiffstats
path: root/kmail/recipientseditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/recipientseditor.cpp')
-rw-r--r--kmail/recipientseditor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/recipientseditor.cpp b/kmail/recipientseditor.cpp
index 387331cc..2bdfe399 100644
--- a/kmail/recipientseditor.cpp
+++ b/kmail/recipientseditor.cpp
@@ -456,7 +456,7 @@ void RecipientsView::slotReturnPressed( RecipientLine *line )
void RecipientsView::slotDownPressed( RecipientLine *line )
{
- int pos = mLines.tqfind( line );
+ int pos = mLines.find( line );
if ( pos >= (int)mLines.count() - 1 ) {
emit focusDown();
} else if ( pos >= 0 ) {
@@ -466,7 +466,7 @@ void RecipientsView::slotDownPressed( RecipientLine *line )
void RecipientsView::slotUpPressed( RecipientLine *line )
{
- int pos = mLines.tqfind( line );
+ int pos = mLines.find( line );
if ( pos > 0 ) {
activateLine( mLines.at( pos - 1 ) );
} else {
@@ -492,7 +492,7 @@ void RecipientsView::slotDeleteLine()
return;
RecipientLine *line = mCurDelLine;
- int pos = mLines.tqfind( line );
+ int pos = mLines.find( line );
int newPos;
if ( pos == 0 ) newPos = pos + 1;