summaryrefslogtreecommitdiffstats
path: root/kio/tests/jobtest.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/tests/jobtest.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/tests/jobtest.h')
-rw-r--r--kio/tests/jobtest.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kio/tests/jobtest.h b/kio/tests/jobtest.h
index 9d3d52894..533ffba8c 100644
--- a/kio/tests/jobtest.h
+++ b/kio/tests/jobtest.h
@@ -20,8 +20,8 @@
#ifndef JOBTEST_H
#define JOBTEST_H
-#include <qstring.h>
-#include <qobject.h>
+#include <tqstring.h>
+#include <tqobject.h>
#include <kio/job.h>
class JobTest : public QObject
@@ -56,24 +56,24 @@ public:
private slots:
void slotEntries( KIO::Job*, const KIO::UDSEntryList& lst );
void slotGetResult( KIO::Job* );
- void slotMimetype(KIO::Job*,const QString&);
+ void slotMimetype(KIO::Job*,const TQString&);
private:
- QString homeTmpDir() const;
- QString otherTmpDir() const;
- QString realSystemPath() const;
+ TQString homeTmpDir() const;
+ TQString otherTmpDir() const;
+ TQString realSystemPath() const;
KURL systemTmpDir() const;
enum { AlreadyExists = 1 };
- void copyLocalFile( const QString& src, const QString& dest );
- void copyLocalDirectory( const QString& src, const QString& dest, int flags = 0 );
- void moveLocalFile( const QString& src, const QString& dest );
- void moveLocalDirectory( const QString& src, const QString& dest );
+ void copyLocalFile( const TQString& src, const TQString& dest );
+ void copyLocalDirectory( const TQString& src, const TQString& dest, int flags = 0 );
+ void moveLocalFile( const TQString& src, const TQString& dest );
+ void moveLocalDirectory( const TQString& src, const TQString& dest );
void copyFileToSystem( bool resolve_local_urls );
int m_result;
- QByteArray m_data;
- QStringList m_names;
- QString m_mimetype;
+ TQByteArray m_data;
+ TQStringList m_names;
+ TQString m_mimetype;
};
#endif