diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:14:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:14:36 -0600 |
commit | 7716a5e605907a009e19f429cec4e6b5f346bd71 (patch) | |
tree | 16cf4a5d7a24db774f988022d514adefc75015c0 /kspy/classinfoview.cpp | |
parent | 0117fbed932653a04aeef16b2ed7edee858959ac (diff) | |
download | tdesdk-7716a5e605907a009e19f429cec4e6b5f346bd71.tar.gz tdesdk-7716a5e605907a009e19f429cec4e6b5f346bd71.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kspy/classinfoview.cpp')
-rw-r--r-- | kspy/classinfoview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kspy/classinfoview.cpp b/kspy/classinfoview.cpp index 87f018bb..5326aeae 100644 --- a/kspy/classinfoview.cpp +++ b/kspy/classinfoview.cpp @@ -25,7 +25,7 @@ #include "classinfoview.h" -ClassInfoView::ClassInfoView(TQWidget *parent, const char *name ) : KListView(parent,name) +ClassInfoView::ClassInfoView(TQWidget *parent, const char *name ) : TDEListView(parent,name) { addColumn( i18n( "Name" ) ); addColumn( i18n( "Value" ) ); @@ -45,7 +45,7 @@ void ClassInfoView::buildList( TQObject *o ) for (int index = 0; index < mo->numClassInfo(true); index++) { const TQClassInfo * classInfo = mo->classInfo(index, true); - new KListViewItem( this, classInfo->tqt_mo_ci_name, classInfo->tqt_mo_ci_value ); + new TDEListViewItem( this, classInfo->tqt_mo_ci_name, classInfo->tqt_mo_ci_value ); } } |