diff options
Diffstat (limited to 'src/entrywidgetkeyword.cpp')
-rw-r--r-- | src/entrywidgetkeyword.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/entrywidgetkeyword.cpp b/src/entrywidgetkeyword.cpp index da34947..f00e7e8 100644 --- a/src/entrywidgetkeyword.cpp +++ b/src/entrywidgetkeyword.cpp @@ -25,11 +25,11 @@ #include <ntqlabel.h> #include <kdialog.h> -#include <klocale.h> +#include <tdelocale.h> #include <kiconloader.h> #include <kdialogbase.h> -#include <kmessagebox.h> -#include <klistview.h> +#include <tdemessagebox.h> +#include <tdelistview.h> #include <kguiitem.h> #include <kdebug.h> @@ -38,7 +38,7 @@ namespace KBibTeX { - KeywordListViewItem::KeywordListViewItem( KListView * parent, const TQString & text, bool global ) : TQCheckListItem( parent, text, TQCheckListItem::CheckBox ) + KeywordListViewItem::KeywordListViewItem( TDEListView * parent, const TQString & text, bool global ) : TQCheckListItem( parent, text, TQCheckListItem::CheckBox ) { setGlobal( global ); } @@ -225,7 +225,7 @@ namespace KBibTeX TQGridLayout * gridLayout = new TQGridLayout( this, 6, 2, KDialog::marginHint(), KDialog::spacingHint(), "gridLayout" ); gridLayout->setRowStretch( 4, 1 ); - m_listviewKeywords = new KListView( this ); + m_listviewKeywords = new TDEListView( this ); m_listviewKeywords->setEnabled( !m_isReadOnly ); m_listviewKeywords->addColumn( i18n( "Keyword" ) ); m_listviewKeywords->addColumn( i18n( "Origin" ) ); |