summaryrefslogtreecommitdiffstats
path: root/kmail/kmlineeditspell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmlineeditspell.cpp')
-rw-r--r--kmail/kmlineeditspell.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmlineeditspell.cpp b/kmail/kmlineeditspell.cpp
index c078cfe7..acf0b0c0 100644
--- a/kmail/kmlineeditspell.cpp
+++ b/kmail/kmlineeditspell.cpp
@@ -119,7 +119,7 @@ void KMLineEdit::dropEvent( TQDropEvent *event )
else {
KABC::VCardConverter converter;
TQString fileName;
- if ( KIO::NetAccess::download( (*it), fileName, parentWidget() ) ) {
+ if ( TDEIO::NetAccess::download( (*it), fileName, parentWidget() ) ) {
TQFile file( fileName );
file.open( IO_ReadOnly );
const TQByteArray data = file.readAll();
@@ -129,7 +129,7 @@ void KMLineEdit::dropEvent( TQDropEvent *event )
#else
list += converter.parseVCards( data );
#endif
- KIO::NetAccess::removeTempFile( fileName );
+ TDEIO::NetAccess::removeTempFile( fileName );
} else {
TQString caption( i18n( "vCard Import Failed" ) );
TQString text = i18n( "<qt>Unable to access <b>%1</b>.</qt>" ).arg( (*it).url() );
@@ -188,7 +188,7 @@ void KMLineEdit::loadContacts()
TQStringList::Iterator it = recent.begin();
TQString name, email;
- KConfig config( "kpimcompletionorder" );
+ TDEConfig config( "kpimcompletionorder" );
config.setGroup( "CompletionWeights" );
int weight = config.readEntry( "Recent Addresses", "10" ).toInt();
int idx = addCompletionSource( i18n( "Recent Addresses" ), weight );