diff options
Diffstat (limited to 'libkdepim/kaddrbook.cpp')
-rw-r--r-- | libkdepim/kaddrbook.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkdepim/kaddrbook.cpp b/libkdepim/kaddrbook.cpp index 7356bc2d8..3a0c7dc02 100644 --- a/libkdepim/kaddrbook.cpp +++ b/libkdepim/kaddrbook.cpp @@ -74,7 +74,7 @@ void KAddrBookExternal::openEmail( const TQString &addr, TQWidget *tqparent ) { //TODO: Enable the better message at the next string unfreeze #if 0 TQString text = i18n("<qt>The email address <b>%1</b> cannot be " - "found in your addressbook.</qt>").arg( email ); + "found in your addressbook.</qt>").tqarg( email ); #else TQString text = email + " " + i18n( "is not in address book" ); #endif @@ -150,12 +150,12 @@ void KAddrBookExternal::addEmail( const TQString& addr, TQWidget *tqparent) { if ( KAddrBookExternal::addAddressee( a ) ) { TQString text = i18n("<qt>The email address <b>%1</b> was added to your " "addressbook; you can add more information to this " - "entry by opening the addressbook.</qt>").arg( addr ); + "entry by opening the addressbook.</qt>").tqarg( addr ); KMessageBox::information( tqparent, text, TQString(), "addedtokabc" ); } } else { TQString text = i18n("<qt>The email address <b>%1</b> is already in your " - "addressbook.</qt>").arg( addr ); + "addressbook.</qt>").tqarg( addr ); KMessageBox::information( tqparent, text, TQString(), "alreadyInAddressBook" ); } |