diff options
author | Slávek Banko <[email protected]> | 2013-06-29 16:33:55 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-04 03:57:45 +0200 |
commit | f2d4b48ad7f6ce4f23c6cbba3e85c67486f922db (patch) | |
tree | 0414ba9f0823b98d2a159c11513ddcda84b932cc /src/webquerycsb.cpp | |
parent | 5f5e7c5455d52826b0bd50f64fcffb7695ce970d (diff) | |
download | kbibtex-f2d4b48ad7f6ce4f23c6cbba3e85c67486f922db.tar.gz kbibtex-f2d4b48ad7f6ce4f23c6cbba3e85c67486f922db.zip |
Initial TDE conversion
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() ) ); |