summaryrefslogtreecommitdiffstats
path: root/kspy/sigslotview.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kspy/sigslotview.cpp
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 );