summaryrefslogtreecommitdiffstats
path: root/libk3bdevice/k3bmsf.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
commitd8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch)
treef295f1c545b319963d5357af79fe08991d8141d9 /libk3bdevice/k3bmsf.h
parent2a39a080579fb52a2599c02b2939795385b89093 (diff)
downloadk3b-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 'libk3bdevice/k3bmsf.h')
-rw-r--r--libk3bdevice/k3bmsf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libk3bdevice/k3bmsf.h b/libk3bdevice/k3bmsf.h
index d2209c3..973f6c3 100644
--- a/libk3bdevice/k3bmsf.h
+++ b/libk3bdevice/k3bmsf.h
@@ -17,8 +17,8 @@
#ifndef _K3B_MSF_H_
#define _K3B_MSF_H_
-#include <qstring.h>
-#include <qregexp.h>
+#include <tqstring.h>
+#include <tqregexp.h>
#include <kdebug.h>
#include <kio/global.h>
@@ -65,7 +65,7 @@ namespace K3b
void addSeconds( int s );
void addFrames( int f );
- QString toString( bool showFrames = true ) const;
+ TQString toString( bool showFrames = true ) const;
KIO::filesize_t mode1Bytes() const;
KIO::filesize_t mode2Form1Bytes() const;
@@ -83,7 +83,7 @@ namespace K3b
* \li 100:23:57 - treated as 100 minutes, 23 seconds, and 57 frames
* \li 100:23.57 - treated as 100 minutes, 23 seconds, and 57 frames
*/
- static Msf fromString( const QString&, bool* ok = 0 );
+ static Msf fromString( const TQString&, bool* ok = 0 );
/**
* @param ms seconds
@@ -91,7 +91,7 @@ namespace K3b
*/
static Msf fromSeconds( double ms );
- static QRegExp regExp();
+ static TQRegExp regExp();
private:
void makeValid();