summaryrefslogtreecommitdiffstats
path: root/kspy/sigslotview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspy/sigslotview.cpp')
-rw-r--r--kspy/sigslotview.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kspy/sigslotview.cpp b/kspy/sigslotview.cpp
index 2e04cfa7..d6fdba24 100644
--- a/kspy/sigslotview.cpp
+++ b/kspy/sigslotview.cpp
@@ -15,17 +15,17 @@
* *
***************************************************************************/
-#include <qobjectdict.h>
-#include <qobjectlist.h>
-#include <qmetaobject.h>
-#include <qstrlist.h>
-#include <qvariant.h>
+#include <tqobjectdict.h>
+#include <tqobjectlist.h>
+#include <tqmetaobject.h>
+#include <tqstrlist.h>
+#include <tqvariant.h>
#include <klocale.h>
#include "sigslotview.h"
-SigSlotView::SigSlotView(QWidget *parent, const char *name ) : KListView(parent,name)
+SigSlotView::SigSlotView(TQWidget *parent, const char *name ) : KListView(parent,name)
{
addColumn( i18n( "Signals/Slots" ) );
@@ -38,13 +38,13 @@ SigSlotView::~SigSlotView()
{
}
-void SigSlotView::buildList( QObject *o )
+void SigSlotView::buildList( TQObject *o )
{
- QMetaObject *mo = o->metaObject();
+ TQMetaObject *mo = o->metaObject();
KListViewItem *sigs = new KListViewItem( this, "Signals" );
- QStrList sigList = mo->signalNames( true );
- QStrListIterator sigIt( sigList );
+ TQStrList sigList = mo->signalNames( true );
+ TQStrListIterator sigIt( sigList );
char *si;
while ( (si=sigIt.current()) != 0 ) {
++sigIt;
@@ -52,8 +52,8 @@ void SigSlotView::buildList( QObject *o )
}
KListViewItem *slts = new KListViewItem( this, "Slots" );
- QStrList sltList = mo->slotNames( true );
- QStrListIterator sltIt( sltList );
+ TQStrList sltList = mo->slotNames( true );
+ TQStrListIterator sltIt( sltList );
char *sl;
while ( (sl=sltIt.current()) != 0 ) {
++sltIt;
@@ -64,7 +64,7 @@ void SigSlotView::buildList( QObject *o )
setOpen( slts, false );
}
-void SigSlotView::setTarget( QObject *o )
+void SigSlotView::setTarget( TQObject *o )
{
clear();
buildList( o );