diff options
Diffstat (limited to 'src/webquerycsb.cpp')
-rw-r--r-- | src/webquerycsb.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webquerycsb.cpp b/src/webquerycsb.cpp index e668499..8768001 100644 --- a/src/webquerycsb.cpp +++ b/src/webquerycsb.cpp @@ -28,9 +28,9 @@ #include <ntqfile.h> #include <ntqdatetime.h> -#include <klocale.h> -#include <kmessagebox.h> -#include <kio/netaccess.h> +#include <tdelocale.h> +#include <tdemessagebox.h> +#include <tdeio/netaccess.h> #include <klineedit.h> #include <kcombobox.h> #include <kpushbutton.h> @@ -83,7 +83,7 @@ namespace KBibTeX TQLabel *label = new TQLabel( i18n( "Search &term:" ), this ); hLayout->addWidget( label ); lineEditQuery = new KLineEdit( this ); - KCompletion *completionQuery = lineEditQuery->completionObject(); + TDECompletion *completionQuery = lineEditQuery->completionObject(); hLayout->addWidget( lineEditQuery ); label->setBuddy( lineEditQuery ); hLayout->addSpacing( KDialog::spacingHint() * 2 ); @@ -274,7 +274,7 @@ namespace KBibTeX } else if ( !m_aborted ) { - TQString message = KIO::NetAccess::lastErrorString(); + TQString message = TDEIO::NetAccess::lastErrorString(); if ( message.isEmpty() ) message.prepend( '\n' ); message.prepend( TQString( i18n( "Querying database '%1' failed." ) ).arg( title() ) ); |