diff options
Diffstat (limited to 'kmail/kmlineeditspell.cpp')
-rw-r--r-- | kmail/kmlineeditspell.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmlineeditspell.cpp b/kmail/kmlineeditspell.cpp index dde827bec..0cd5aec55 100644 --- a/kmail/kmlineeditspell.cpp +++ b/kmail/kmlineeditspell.cpp @@ -108,7 +108,7 @@ void KMLineEdit::dropEvent( TQDropEvent *event ) KABC::Addressee::List list; for ( it = urls.begin(); it != urls.end(); ++it ) { - // First, let's deal with mailto Urls. The path() part contains the + // First, let's deal with mailto Urls. The path() part tqcontains the // email-address. if ( (*it).protocol() == "mailto" ) { KABC::Addressee addressee; @@ -119,7 +119,7 @@ void KMLineEdit::dropEvent( TQDropEvent *event ) else { KABC::VCardConverter converter; TQString fileName; - if ( KIO::NetAccess::download( (*it), fileName, parentWidget() ) ) { + if ( KIO::NetAccess::download( (*it), fileName, tqparentWidget() ) ) { TQFile file( fileName ); file.open( IO_ReadOnly ); const TQByteArray data = file.readAll(); @@ -133,7 +133,7 @@ void KMLineEdit::dropEvent( TQDropEvent *event ) } else { TQString caption( i18n( "vCard Import Failed" ) ); TQString text = i18n( "<qt>Unable to access <b>%1</b>.</qt>" ).arg( (*it).url() ); - KMessageBox::error( parentWidget(), text, caption ); + KMessageBox::error( tqparentWidget(), text, caption ); } } // Now, let the user choose which addressee to add. |