summaryrefslogtreecommitdiffstats
path: root/krename/krecursivelister.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krename/krecursivelister.cpp')
-rw-r--r--krename/krecursivelister.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krename/krecursivelister.cpp b/krename/krecursivelister.cpp
index 94d96b4..17843d0 100644
--- a/krename/krecursivelister.cpp
+++ b/krename/krecursivelister.cpp
@@ -15,11 +15,11 @@
* *
***************************************************************************/
-#include <qtimer.h>
+#include <tqtimer.h>
#include "krecursivelister.h"
-KRecursiveLister::KRecursiveLister(QObject *parent, const char *name ) : QObject(parent,name) {
+KRecursiveLister::KRecursiveLister(TQObject *tqparent, const char *name ) : TQObject(tqparent,name) {
lister = 0L;
filelist.clear();
dirlist.clear();
@@ -27,7 +27,7 @@ KRecursiveLister::KRecursiveLister(QObject *parent, const char *name ) : QObject
allItems.setAutoDelete( true ); // only there to delete all items
m_hidden = false;
m_dirs = false;
- m_filter = QString::null;
+ m_filter = TQString();
}
KRecursiveLister::~KRecursiveLister(){
@@ -72,7 +72,7 @@ void KRecursiveLister::slotListingComplete(){
}
}
- QTimer::singleShot( 0, this, SLOT( listNextDirectory() ));
+ TQTimer::singleShot( 0, this, TQT_SLOT( listNextDirectory() ));
}
/** Starts listing the specified url */
@@ -82,7 +82,7 @@ void KRecursiveLister::startListing(const KURL& url){
lister->setShowingDotFiles( m_hidden );
lister->setNameFilter( m_filter );
lister->setDirOnlyMode( m_dirs );
- connect(lister,SIGNAL(completed()), this, SLOT(slotListingComplete()) );
+ connect(lister,TQT_SIGNAL(completed()), this, TQT_SLOT(slotListingComplete()) );
}
lister->openURL( url, false, false );