diff options
Diffstat (limited to 'ark/arch.cpp')
-rw-r--r-- | ark/arch.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ark/arch.cpp b/ark/arch.cpp index 29bdf63..ee2a23e 100644 --- a/ark/arch.cpp +++ b/ark/arch.cpp @@ -365,13 +365,13 @@ bool Arch::processLine( const TQCString &line ) : columns[ m_fixYear ]; TQString month = ( m_repairMonth >= 0 ) ? TQString( "%1" ) - .tqarg( ArkUtils::getMonth( columns[ m_repairMonth ].ascii() ) ) + .arg( ArkUtils::getMonth( columns[ m_repairMonth ].ascii() ) ) : columns[ m_fixMonth ]; TQString timestamp = TQString::fromLatin1( "%1-%2-%3 %4" ) - .tqarg( year ) - .tqarg( month ) - .tqarg( columns[ m_fixDay ] ) - .tqarg( columns[ m_fixTime ] ); + .arg( year ) + .arg( month ) + .arg( columns[ m_fixDay ] ) + .arg( columns[ m_fixTime ] ); columns[ m_dateCol ] = timestamp; } |