diff options
Diffstat (limited to 'kaddressbook/kaddressbookview.cpp')
-rw-r--r-- | kaddressbook/kaddressbookview.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kaddressbook/kaddressbookview.cpp b/kaddressbook/kaddressbookview.cpp index 2059fbb35..9f1aa3cec 100644 --- a/kaddressbook/kaddressbookview.cpp +++ b/kaddressbook/kaddressbookview.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 <tqlayout.h> @@ -37,9 +37,9 @@ #include "kaddressbookview.h" -KAddressBookView::KAddressBookView( KAB::Core *core, TQWidget *parent, +KAddressBookView::KAddressBookView( KAB::Core *core, TQWidget *tqparent, const char *name ) - : TQWidget( parent, name ), mCore( core ), mFieldList() + : TQWidget( tqparent, name ), mCore( core ), mFieldList() { initGUI(); @@ -79,10 +79,10 @@ TQString KAddressBookView::selectedEmails() TQStringList::ConstIterator it; for ( it = uidList.begin(); it != uidList.end(); ++it ) { - addr = mCore->addressBook()->tqfindByUid( *it ); + addr = mCore->addressBook()->findByUid( *it ); if ( !addr.isEmpty() ) { - TQString m = TQString::null; + TQString m = TQString(); if ( addr.emails().count() > 1 ) m = KABC::EmailSelector::getEmail( addr.emails(), addr.preferredEmail(), this ); @@ -189,15 +189,15 @@ void KAddressBookView::updateView() if ( !contacts.isEmpty() ) setFirstSelected( true ); else - emit selected( TQString::null ); + emit selected( TQString() ); } } ViewConfigureWidget *ViewFactory::configureWidget( KABC::AddressBook *ab, - TQWidget *parent, + TQWidget *tqparent, const char *name ) { - return new ViewConfigureWidget( ab, parent, name ); + return new ViewConfigureWidget( ab, tqparent, name ); } #include "kaddressbookview.moc" |