diff options
Diffstat (limited to 'kuser/editGroup.cpp')
-rw-r--r-- | kuser/editGroup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kuser/editGroup.cpp b/kuser/editGroup.cpp index 0cea581..afb0da3 100644 --- a/kuser/editGroup.cpp +++ b/kuser/editGroup.cpp @@ -274,19 +274,19 @@ void editGroup::slotOk() kug->getGroups().lookup( legrpname->text() ) ) { KMessageBox::sorry( 0, - i18n("Group with name %1 already exists.").tqarg(legrpname->text()) ); + i18n("Group with name %1 already exists.").arg(legrpname->text()) ); return; } if ( mAdd ) { if ( mSamba && !cbsamba->isChecked() && kug->getGroups().lookup_sam( sid ) ) { KMessageBox::sorry( 0, - i18n("Group with SID %1 already exists.").tqarg( sid.getSID() ) ); + i18n("Group with SID %1 already exists.").arg( sid.getSID() ) ); return; } if (kug->getGroups().lookup(s.toInt())) { KMessageBox::sorry( 0, - i18n("Group with gid %1 already exists.").tqarg(s.toInt()) ); + i18n("Group with gid %1 already exists.").arg(s.toInt()) ); return; } } |