diff options
Diffstat (limited to 'src/webquerydblp.cpp')
-rw-r--r-- | src/webquerydblp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webquerydblp.cpp b/src/webquerydblp.cpp index dceb074..88fe881 100644 --- a/src/webquerydblp.cpp +++ b/src/webquerydblp.cpp @@ -25,13 +25,13 @@ #include <ntqlabel.h> #include <ntqlayout.h> -#include <klocale.h> +#include <tdelocale.h> #include <klineedit.h> #include <kpushbutton.h> #include <kiconloader.h> #include <kcombobox.h> -#include <kmessagebox.h> -#include <kio/netaccess.h> +#include <tdemessagebox.h> +#include <tdeio/netaccess.h> #include <kurl.h> #include <settings.h> @@ -74,7 +74,7 @@ namespace KBibTeX connect( clearSearchText, SIGNAL( clicked() ), lineEditQuery, SLOT( clear() ) ); connect( lineEditQuery, SIGNAL( textChanged( const TQString& ) ), this, SLOT( slotTextChanged( const TQString& ) ) ); hLayout->setStretchFactor( lineEditQuery, 4 ); - KCompletion *completionQuery = lineEditQuery->completionObject(); + TDECompletion *completionQuery = lineEditQuery->completionObject(); label = new TQLabel( i18n( "&Number of results:" ), this ); hLayout->addWidget( label ); @@ -198,7 +198,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() ) ); |