diff options
Diffstat (limited to 'libk3b/videodvd/k3bvideodvdtime.cpp')
-rw-r--r-- | libk3b/videodvd/k3bvideodvdtime.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libk3b/videodvd/k3bvideodvdtime.cpp b/libk3b/videodvd/k3bvideodvdtime.cpp index acc6aec..93840c5 100644 --- a/libk3b/videodvd/k3bvideodvdtime.cpp +++ b/libk3b/videodvd/k3bvideodvdtime.cpp @@ -76,19 +76,19 @@ double K3bVideoDVD::Time::frameRate() const } -QString K3bVideoDVD::Time::toString( bool includeFrames ) const +TQString K3bVideoDVD::Time::toString( bool includeFrames ) const { // FIXME: use a d-pointer const_cast<K3bVideoDVD::Time*>(this)->makeValid(); if( includeFrames ) - return QString().sprintf( "%02d:%02d:%02d.%02d", + return TQString().sprintf( "%02d:%02d:%02d.%02d", m_hour, m_minute, m_second, m_frame & 0x3f ); else - return QString().sprintf( "%02d:%02d:%02d", + return TQString().sprintf( "%02d:%02d:%02d", m_hour, m_minute, m_second + ( m_frame > 0 ? 1 : 0 ) ); |