summaryrefslogtreecommitdiffstats
path: root/kcontrol/filetypes
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/filetypes')
-rw-r--r--kcontrol/filetypes/filetypesview.cpp2
-rw-r--r--kcontrol/filetypes/filetypesview.h4
-rw-r--r--kcontrol/filetypes/kserviceselectdlg.cpp2
-rw-r--r--kcontrol/filetypes/kserviceselectdlg.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/filetypes/filetypesview.cpp b/kcontrol/filetypes/filetypesview.cpp
index bf8551fb7..a47743bc6 100644
--- a/kcontrol/filetypes/filetypesview.cpp
+++ b/kcontrol/filetypes/filetypesview.cpp
@@ -75,7 +75,7 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name)
TQWhatsThis::add( patternFilterLE, wtstr );
TQWhatsThis::add( patternFilterLBL, wtstr );
- typesLV = new KListView(this);
+ typesLV = new TDEListView(this);
typesLV->setRootIsDecorated(true);
typesLV->setFullWidth(true);
diff --git a/kcontrol/filetypes/filetypesview.h b/kcontrol/filetypes/filetypesview.h
index 63909d718..405238e0e 100644
--- a/kcontrol/filetypes/filetypesview.h
+++ b/kcontrol/filetypes/filetypesview.h
@@ -10,7 +10,7 @@
#include "typeslistitem.h"
class TQLabel;
-class KListView;
+class TDEListView;
class TQListViewItem;
class TQListBox;
class TQPushButton;
@@ -51,7 +51,7 @@ protected:
bool sync( TQValueList<TypesListItem *>& itemsModified );
private:
- KListView *typesLV;
+ TDEListView *typesLV;
TQPushButton *m_removeTypeB;
TQWidgetStack * m_widgetStack;
diff --git a/kcontrol/filetypes/kserviceselectdlg.cpp b/kcontrol/filetypes/kserviceselectdlg.cpp
index c8b203d84..b0cf1e3b1 100644
--- a/kcontrol/filetypes/kserviceselectdlg.cpp
+++ b/kcontrol/filetypes/kserviceselectdlg.cpp
@@ -33,7 +33,7 @@ KServiceSelectDlg::KServiceSelectDlg( const TQString& /*serviceType*/, const TQS
vbox->setSpacing( KDialog::spacingHint() );
new TQLabel( i18n( "Select service:" ), vbox );
- m_listbox=new KListBox( vbox );
+ m_listbox=new TDEListBox( vbox );
// Can't make a TDETrader query since we don't have a servicetype to give,
// we want all services that are not applications.......
diff --git a/kcontrol/filetypes/kserviceselectdlg.h b/kcontrol/filetypes/kserviceselectdlg.h
index 6f9bbe568..3b3ea87e7 100644
--- a/kcontrol/filetypes/kserviceselectdlg.h
+++ b/kcontrol/filetypes/kserviceselectdlg.h
@@ -41,7 +41,7 @@ public:
*/
KService::Ptr service();
private:
- KListBox * m_listbox;
+ TDEListBox * m_listbox;
};
#endif