diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:36 -0600 |
commit | 7716a5e605907a009e19f429cec4e6b5f346bd71 (patch) | |
tree | 16cf4a5d7a24db774f988022d514adefc75015c0 /kspy/receiversview.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/receiversview.cpp')
-rw-r--r-- | kspy/receiversview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kspy/receiversview.cpp b/kspy/receiversview.cpp index b9ff68b1..98132b52 100644 --- a/kspy/receiversview.cpp +++ b/kspy/receiversview.cpp @@ -31,7 +31,7 @@ public: TQConnectionList *public_receivers(int signal) const { return receivers(signal); } }; -ReceiversView::ReceiversView(TQWidget *parent, const char *name ) : KListView(parent,name) +ReceiversView::ReceiversView(TQWidget *parent, const char *name ) : TDEListView(parent,name) { addColumn( i18n( "Object" ) ); addColumn( i18n( "Type" ) ); @@ -56,13 +56,13 @@ void ReceiversView::buildList( TQObject *o ) for (int sig = 0; sig < mo->numSignals(true); sig++) { TQConnectionList * clist = qobject->public_receivers(sig); if (clist != 0) { - KListViewItem *conn = new KListViewItem( this, signalNames.at(sig) ); + TDEListViewItem *conn = new TDEListViewItem( this, signalNames.at(sig) ); for ( TQConnection * connection = clist->first(); connection != 0; connection = clist->next() ) { - new KListViewItem( conn, + new TDEListViewItem( conn, connection->object()->name(), connection->memberType() == 1 ? "SLOT" : "SIGNAL", connection->memberName() ); |