summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdtitleset.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 23:37:00 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 23:37:00 +0000
commitb0e912c8b3d02a518fedda28c3180eb4794a7520 (patch)
tree07d344862562fab58cbe2df39d13d16f2e4d2bea /libk9copy/k9dvdtitleset.cpp
parent4d695ec81fe4d4335ee82c7a9346ad9c9e144ecc (diff)
downloadk9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.tar.gz
k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.zip
TQt4 convert k9copy
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1233843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9dvdtitleset.cpp')
-rw-r--r--libk9copy/k9dvdtitleset.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libk9copy/k9dvdtitleset.cpp b/libk9copy/k9dvdtitleset.cpp
index cfa445a..eb295ac 100644
--- a/libk9copy/k9dvdtitleset.cpp
+++ b/libk9copy/k9dvdtitleset.cpp
@@ -16,7 +16,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
k9DVDTitleset::k9DVDTitleset( uint _num,uint32_t _size) {
m_num=_num;
@@ -28,10 +28,10 @@ k9DVDTitleset::k9DVDTitleset( uint _num,uint32_t _size) {
};
-const QString k9DVDTitleset::getsize_mb()
+const TQString k9DVDTitleset::getsize_mb()
{
double size_mb=(double)m_size /512;
- QString c;
+ TQString c;
c.sprintf("%.2f",size_mb);
return c;
}