diff options
Diffstat (limited to 'kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp')
-rw-r--r-- | kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp b/kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp index e1ec820..09c9fa2 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp +++ b/kmyfirewall/genericinterface/kmfgenericinterfacelogging.cpp @@ -90,7 +90,7 @@ void KMFGenericInterfaceLogging::slotLoggingChanged( bool onoff ) { KMFUndoEngine::instance()->startTransaction( m_doc->currentDocAsGenericDoc(), - i18n( "%1 logging of dropped packets." ).tqarg( onoff ? i18n( "Enable" ) : i18n( "Disable" ) ) + i18n( "%1 logging of dropped packets." ).arg( onoff ? i18n( "Enable" ) : i18n( "Disable" ) ) ); m_doc->currentDocAsGenericDoc()->setLogDropped( onoff ); KMFUndoEngine::instance()->endTransaction(); @@ -102,7 +102,7 @@ void KMFGenericInterfaceLogging::slotLimitChanged( bool onoff ) { } KMFUndoEngine::instance()->startTransaction( m_doc->currentDocAsGenericDoc(), - i18n( "%1 logging limit." ).tqarg( onoff ? i18n( "Enable" ) : i18n( "Disable" ) ) + i18n( "%1 logging limit." ).arg( onoff ? i18n( "Enable" ) : i18n( "Disable" ) ) ); m_doc->currentDocAsGenericDoc()->setLimitLog( onoff ); KMFUndoEngine::instance()->endTransaction(); @@ -114,7 +114,7 @@ void KMFGenericInterfaceLogging::slotLogPrefixChanged( const TQString & ) { } KMFUndoEngine::instance()->startTransaction( m_doc->currentDocAsGenericDoc(), - i18n( "Change logging prefix to %1." ).tqarg( m_le_logPrefix->text().simplifyWhiteSpace() ) + i18n( "Change logging prefix to %1." ).arg( m_le_logPrefix->text().simplifyWhiteSpace() ) ); m_doc->currentDocAsGenericDoc()->setLogPrefix( m_le_logPrefix->text().simplifyWhiteSpace() ); KMFUndoEngine::instance()->endTransaction(); |