diff options
Diffstat (limited to 'kopete/libkopete/kopeteaccountmanager.h')
-rw-r--r-- | kopete/libkopete/kopeteaccountmanager.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/kopete/libkopete/kopeteaccountmanager.h b/kopete/libkopete/kopeteaccountmanager.h index 75ebf667..cfca90d3 100644 --- a/kopete/libkopete/kopeteaccountmanager.h +++ b/kopete/libkopete/kopeteaccountmanager.h @@ -43,9 +43,10 @@ class OnlineStatus; * @author Martijn Klingens <klingens@kde.org> * @author Olivier Goffart <ogoffart@ tiscalinet.be> */ -class KOPETE_EXPORT AccountManager : public QObject +class KOPETE_EXPORT AccountManager : public TQObject { Q_OBJECT + TQ_OBJECT public: /** @@ -139,10 +140,10 @@ public slots: * * @param category is one of the Kopete::OnlineStatusManager::Categories * @param awayMessage is the new away message - * @param flags is a bitmask of SetOnlineStatusFlag + * @param flags is a bittqmask of SetOnlineStatusFlag */ void setOnlineStatus( /*Kopete::OnlineStatusManager::Categories*/ uint category, - const TQString& awayMessage = TQString::null, uint flags=0); + const TQString& awayMessage = TQString(), uint flags=0); /** * \brief Set all accounts to away at once. @@ -152,7 +153,7 @@ public slots: * @param awayReason is the away message that will be set. * @param away decides whether the message is away/non-away */ - void setAwayAll( const TQString &awayReason = TQString::null, bool away=true ); + void setAwayAll( const TQString &awayReason = TQString(), bool away=true ); /** * \brief Connect or make available every account. @@ -162,7 +163,7 @@ public slots: * This is a slot, so you can connect directly to it from e.g. a KAction. * @param awayReason is the away(status) message that will be set. */ - void setAvailableAll( const TQString &awayReason = TQString::null ); + void setAvailableAll( const TQString &awayReason = TQString() ); /** * \internal @@ -195,11 +196,11 @@ signals: * \brief An account has changed its onlinestatus * Technically this monitors Account::myself() onlinestatus changes * \param account Account which changed its onlinestatus - * \param oldStatus The online status before the change - * \param newStatus The new online status + * \param oldtqStatus The online status before the change + * \param newtqStatus The new online status */ void accountOnlineStatusChanged(Kopete::Account *account, - const Kopete::OnlineStatus &oldStatus, const Kopete::OnlineStatus &newStatus); + const Kopete::OnlineStatus &oldtqStatus, const Kopete::OnlineStatus &newtqStatus); private: /** @@ -210,7 +211,7 @@ private: private slots: void slotPluginLoaded( Kopete::Plugin *plugin ); void slotAccountOnlineStatusChanged(Kopete::Contact *c, - const Kopete::OnlineStatus &oldStatus, const Kopete::OnlineStatus &newStatus); + const Kopete::OnlineStatus &oldtqStatus, const Kopete::OnlineStatus &newtqStatus); /** * \internal |