From 40393e30bb743346b6b40bf130da35419c12ebdc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 17:34:53 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f) --- kopete/protocols/gadu/gadueditaccount.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kopete/protocols/gadu/gadueditaccount.cpp') diff --git a/kopete/protocols/gadu/gadueditaccount.cpp b/kopete/protocols/gadu/gadueditaccount.cpp index 30411c4b..ff4a5aca 100644 --- a/kopete/protocols/gadu/gadueditaccount.cpp +++ b/kopete/protocols/gadu/gadueditaccount.cpp @@ -81,14 +81,14 @@ GaduEditAccount::GaduEditAccount( GaduProtocol* proto, Kopete::Account* ident, T useTls_->setCurrentItem( isSsl ? ( account_->useTls() ) : 2 ); ignoreCheck_->setChecked( account_->ignoreAnons() ); - connect( account(), TQT_SIGNAL( pubDirSearchResult( const SearchResult&, unsigned int ) ), - TQT_SLOT( slotSearchResult( const SearchResult&, unsigned int ) ) ); + connect( account(), TQ_SIGNAL( pubDirSearchResult( const SearchResult&, unsigned int ) ), + TQ_SLOT( slotSearchResult( const SearchResult&, unsigned int ) ) ); connectLabel->setText( i18n( "personal information being fetched from server", "

Fetching from server

" ) ); seqNr = account_->getPersonalInformation(); } - connect( registerNew, TQT_SIGNAL( clicked( ) ), TQT_SLOT( registerNewAccount( ) ) ); + connect( registerNew, TQ_SIGNAL( clicked( ) ), TQ_SLOT( registerNewAccount( ) ) ); TQWidget::setTabOrder( loginEdit_, passwordWidget_->mRemembered ); TQWidget::setTabOrder( passwordWidget_->mRemembered, passwordWidget_->mPassword ); @@ -157,7 +157,7 @@ GaduEditAccount::slotSearchResult( const SearchResult& result, unsigned int seq enableUserInfo( true ); - disconnect( TQT_SLOT( slotSearchResult( const SearchResult&, unsigned int ) ) ); + disconnect( TQ_SLOT( slotSearchResult( const SearchResult&, unsigned int ) ) ); } void @@ -179,7 +179,7 @@ GaduEditAccount::registerNewAccount() { registerNew->setDisabled( true ); regDialog = new GaduRegisterAccount( NULL , "Register account dialog" ); - connect( regDialog, TQT_SIGNAL( registeredNumber( unsigned int, TQString ) ), TQT_SLOT( newUin( unsigned int, TQString ) ) ); + connect( regDialog, TQ_SIGNAL( registeredNumber( unsigned int, TQString ) ), TQ_SLOT( newUin( unsigned int, TQString ) ) ); if ( regDialog->exec() != TQDialog::Accepted ) { loginEdit_->setText( "" ); return; -- cgit v1.2.1