diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /libk3b/tools/k3bmd5job.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/tools/k3bmd5job.h')
-rw-r--r-- | libk3b/tools/k3bmd5job.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libk3b/tools/k3bmd5job.h b/libk3b/tools/k3bmd5job.h index cd64795..8c487a2 100644 --- a/libk3b/tools/k3bmd5job.h +++ b/libk3b/tools/k3bmd5job.h @@ -18,7 +18,7 @@ #define _K3B_MD5_JOB_H_ #include <k3bjob.h> -#include <qcstring.h> +#include <tqcstring.h> #include "k3b_export.h" namespace K3bDevice { @@ -31,20 +31,21 @@ class K3bIso9660File; class LIBK3B_EXPORT K3bMd5Job : public K3bJob { Q_OBJECT + TQ_OBJECT public: - K3bMd5Job( K3bJobHandler* jh , QObject* parent = 0, const char* name = 0 ); + K3bMd5Job( K3bJobHandler* jh , TQObject* tqparent = 0, const char* name = 0 ); ~K3bMd5Job(); - QCString hexDigest(); - QCString base64Digest(); + TQCString hexDigest(); + TQCString base64Digest(); public slots: void start(); void stop(); void cancel(); - // FIXME: read from QIODevice and thus add K3bFileSplitter support + // FIXME: read from TQIODevice and thus add K3bFileSplitter support /** * read from a file. @@ -53,7 +54,7 @@ class LIBK3B_EXPORT K3bMd5Job : public K3bJob * images. In the future this will be changed with the introduction * of a setIODevice method. */ - void setFile( const QString& filename ); + void setFile( const TQString& filename ); /** * read from an iso9660 file |