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 /src/k3bprojectinterface.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 'src/k3bprojectinterface.h')
-rw-r--r-- | src/k3bprojectinterface.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/k3bprojectinterface.h b/src/k3bprojectinterface.h index 8deb848..2a7c38a 100644 --- a/src/k3bprojectinterface.h +++ b/src/k3bprojectinterface.h @@ -19,7 +19,7 @@ #include <dcopobject.h> #include <kio/global.h> -#include <qstringlist.h> +#include <tqstringlist.h> class K3bDoc; @@ -36,11 +36,11 @@ class K3bProjectInterface : public DCOPObject // Generate a name for this interface. Automatically used if name=0 is // passed to the constructor - static QCString newIfaceName(); + static TQCString newIfaceName(); k_dcop: - virtual void addUrls( const QStringList& urls ); - virtual void addUrl( const QString& url ); + virtual void addUrls( const TQStringList& urls ); + virtual void addUrl( const TQString& url ); /** * Opens the burn dialog @@ -55,7 +55,7 @@ class K3bProjectInterface : public DCOPObject */ virtual bool directBurn(); - virtual void setBurnDevice( const QString& blockdevicename ); + virtual void setBurnDevice( const TQString& blockdevicename ); /** * \return the length of the project in blocks (frames). @@ -67,7 +67,7 @@ class K3bProjectInterface : public DCOPObject */ virtual KIO::filesize_t size() const; - virtual const QString& imagePath() const; + virtual const TQString& imagePath() const; /** * \return A string representation of the project type. One of: @@ -82,7 +82,7 @@ class K3bProjectInterface : public DCOPObject * * Be aware that this is not the same as K3bDoc::documentType for historical reasons. */ - virtual QString projectType() const; + virtual TQString projectType() const; private: K3bDoc* m_doc; |