diff options
Diffstat (limited to 'kaddressbook/kabtools.cpp')
-rw-r--r-- | kaddressbook/kabtools.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/kabtools.cpp b/kaddressbook/kabtools.cpp index 83571a7a9..0b98eab3c 100644 --- a/kaddressbook/kabtools.cpp +++ b/kaddressbook/kabtools.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <kabc/addressbook.h> @@ -65,7 +65,7 @@ void KABTools::mailVCards( const TQStringList &uids, KABC::AddressBook *ab ) TQStringList::ConstIterator it( uids.begin() ); const TQStringList::ConstIterator endIt( uids.end() ); for ( ; it != endIt; ++it ) { - KABC::Addressee addressee = ab->tqfindByUid( *it ); + KABC::Addressee addressee = ab->findByUid( *it ); if ( addressee.isEmpty() ) continue; @@ -97,10 +97,10 @@ void KABTools::mailVCards( const TQStringList &uids, KABC::AddressBook *ab ) } } - kapp->invokeMailer( TQString::null, TQString::null, TQString::null, - TQString::null, - TQString::null, - TQString::null, + kapp->invokeMailer( TQString(), TQString(), TQString(), + TQString(), + TQString(), + TQString(), urls.toStringList() ); } |