diff options
Diffstat (limited to 'kpovmodeler/pmserializer.cpp')
-rw-r--r-- | kpovmodeler/pmserializer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpovmodeler/pmserializer.cpp b/kpovmodeler/pmserializer.cpp index 149e6020..2f58d0c1 100644 --- a/kpovmodeler/pmserializer.cpp +++ b/kpovmodeler/pmserializer.cpp @@ -72,7 +72,7 @@ void PMSerializer::printError( const TQString& msg ) else if( m_errors == s_maxErrors ) { m_messages += PMMessage( i18n( "Maximum of %1 errors reached." ) - .tqarg( s_maxErrors ) ); + .arg( s_maxErrors ) ); m_errors++; } } @@ -87,7 +87,7 @@ void PMSerializer::printWarning( const TQString& msg ) else if( m_warnings == s_maxWarnings ) { m_messages += PMMessage( i18n( "Maximum of %1 warnings reached." ) - .tqarg( s_maxWarnings ) ); + .arg( s_maxWarnings ) ); m_warnings++; } } |