diff options
Diffstat (limited to 'kopete/plugins/webpresence')
-rw-r--r-- | kopete/plugins/webpresence/webpresenceplugin.cpp | 24 | ||||
-rw-r--r-- | kopete/plugins/webpresence/webpresencepreferences.cpp | 4 |
2 files changed, 14 insertions, 14 deletions
diff --git a/kopete/plugins/webpresence/webpresenceplugin.cpp b/kopete/plugins/webpresence/webpresenceplugin.cpp index 9ebcb3be..638bd767 100644 --- a/kopete/plugins/webpresence/webpresenceplugin.cpp +++ b/kopete/plugins/webpresence/webpresenceplugin.cpp @@ -56,13 +56,13 @@ WebPresencePlugin::WebPresencePlugin( TQObject *parent, const char *name, const shuttingDown( false ), resultFormatting( WEB_HTML ) { m_writeScheduler = new TQTimer( this ); - connect ( m_writeScheduler, TQT_SIGNAL( timeout() ), this, TQT_SLOT( slotWriteFile() ) ); - connect( Kopete::AccountManager::self(), TQT_SIGNAL(accountRegistered(Kopete::Account*)), - this, TQT_SLOT( listenToAllAccounts() ) ); - connect( Kopete::AccountManager::self(), TQT_SIGNAL(accountUnregistered(Kopete::Account*)), - this, TQT_SLOT( listenToAllAccounts() ) ); + connect ( m_writeScheduler, TQ_SIGNAL( timeout() ), this, TQ_SLOT( slotWriteFile() ) ); + connect( Kopete::AccountManager::self(), TQ_SIGNAL(accountRegistered(Kopete::Account*)), + this, TQ_SLOT( listenToAllAccounts() ) ); + connect( Kopete::AccountManager::self(), TQ_SIGNAL(accountUnregistered(Kopete::Account*)), + this, TQ_SLOT( listenToAllAccounts() ) ); - connect(this, TQT_SIGNAL(settingsChanged()), this, TQT_SLOT( loadSettings() ) ); + connect(this, TQ_SIGNAL(settingsChanged()), this, TQ_SLOT( loadSettings() ) ); loadSettings(); listenToAllAccounts(); } @@ -131,17 +131,17 @@ void WebPresencePlugin::listenToAccount( Kopete::Account* account ) // Connect to the account's status changed signal // because we can't know if the account has already connected TQObject::disconnect( account->myself(), - TQT_SIGNAL(onlineStatusChanged( Kopete::Contact *, + TQ_SIGNAL(onlineStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus &, const Kopete::OnlineStatus & ) ), this, - TQT_SLOT( slotWaitMoreStatusChanges() ) ) ; + TQ_SLOT( slotWaitMoreStatusChanges() ) ) ; TQObject::connect( account->myself(), - TQT_SIGNAL(onlineStatusChanged( Kopete::Contact *, + TQ_SIGNAL(onlineStatusChanged( Kopete::Contact *, const Kopete::OnlineStatus &, const Kopete::OnlineStatus & ) ), this, - TQT_SLOT( slotWaitMoreStatusChanges() ) ); + TQ_SLOT( slotWaitMoreStatusChanges() ) ); } } @@ -197,8 +197,8 @@ void WebPresencePlugin::slotWriteFile() // upload it to the specified URL KURL src( m_output->name() ); TDEIO::FileCopyJob *job = TDEIO::file_move( src, dest, -1, true, false, false ); - connect( job, TQT_SIGNAL( result( TDEIO::Job * ) ), - TQT_SLOT( slotUploadJobResult( TDEIO::Job * ) ) ); + connect( job, TQ_SIGNAL( result( TDEIO::Job * ) ), + TQ_SLOT( slotUploadJobResult( TDEIO::Job * ) ) ); } void WebPresencePlugin::slotUploadJobResult( TDEIO::Job *job ) diff --git a/kopete/plugins/webpresence/webpresencepreferences.cpp b/kopete/plugins/webpresence/webpresencepreferences.cpp index 209bc0bc..ccdd4a61 100644 --- a/kopete/plugins/webpresence/webpresencepreferences.cpp +++ b/kopete/plugins/webpresence/webpresencepreferences.cpp @@ -38,8 +38,8 @@ WebPresencePreferences::WebPresencePreferences(TQWidget *parent, const char* /*n // KAutoConfig stuff kautoconfig = new KAutoConfig(TDEGlobal::config(), this, "kautoconfig"); - connect(kautoconfig, TQT_SIGNAL(widgetModified()), TQT_SLOT(widgetModified())); - connect(kautoconfig, TQT_SIGNAL(settingsChanged()), TQT_SLOT(widgetModified())); + connect(kautoconfig, TQ_SIGNAL(widgetModified()), TQ_SLOT(widgetModified())); + connect(kautoconfig, TQ_SIGNAL(settingsChanged()), TQ_SLOT(widgetModified())); kautoconfig->addWidget(preferencesDialog, "Web Presence Plugin"); kautoconfig->retrieveSettings(true); } |