summaryrefslogtreecommitdiffstats
path: root/smb4k/configdlg/smb4kconfigdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/configdlg/smb4kconfigdialog.cpp')
-rw-r--r--smb4k/configdlg/smb4kconfigdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/smb4k/configdlg/smb4kconfigdialog.cpp b/smb4k/configdlg/smb4kconfigdialog.cpp
index 07b689c..2326389 100644
--- a/smb4k/configdlg/smb4kconfigdialog.cpp
+++ b/smb4k/configdlg/smb4kconfigdialog.cpp
@@ -316,8 +316,8 @@ void Smb4KConfigDialog::loadCustomSambaOptions()
item->setText( Smb4KSambaOptions::ItemName, (*it)->itemName() );
item->setText( Smb4KSambaOptions::Port, ((*it)->port() != -1 ?
- TQString( "%1" ).tqarg( (*it)->port() ) :
- TQString( "%1" ).tqarg( Smb4KSettings::remotePort() )) );
+ TQString( "%1" ).arg( (*it)->port() ) :
+ TQString( "%1" ).arg( Smb4KSettings::remotePort() )) );
switch ( (*it)->type() )
{
@@ -905,11 +905,11 @@ bool Smb4KConfigDialog::checkSettings()
{
if ( index == 1 )
{
- KMessageBox::error( this, i18n( "The configuration could not be written, because one setting is incomplete:\n%1Please correct this issue." ).tqarg( issues ) );
+ KMessageBox::error( this, i18n( "The configuration could not be written, because one setting is incomplete:\n%1Please correct this issue." ).arg( issues ) );
}
else
{
- KMessageBox::error( this, i18n( "The configuration could not be written, because %1 settings are incomplete:\n%1Please correct these issues." ).tqarg( index ).tqarg( issues ) );
+ KMessageBox::error( this, i18n( "The configuration could not be written, because %1 settings are incomplete:\n%1Please correct these issues." ).arg( index ).arg( issues ) );
}
}