summaryrefslogtreecommitdiffstats
path: root/konversation/src/serverison.h
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/serverison.h')
-rw-r--r--konversation/src/serverison.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/konversation/src/serverison.h b/konversation/src/serverison.h
index 4500564..8a2dc23 100644
--- a/konversation/src/serverison.h
+++ b/konversation/src/serverison.h
@@ -28,7 +28,7 @@
class Server;
-typedef QMap<QString,KABC::Addressee> OfflineNickToAddresseeMap;
+typedef TQMap<TQString,KABC::Addressee> OfflineNickToAddresseeMap;
class ServerISON : public QObject
{
@@ -47,14 +47,14 @@ class ServerISON : public QObject
*
* @see getAddressees()
*/
- QStringList getWatchList();
+ TQStringList getWatchList();
/**
* The same list as getWatchList, but with nicks in joined channels eliminated.
* There is no point in performing an ISON on such nicks because we already
* know they are online. This function is called, and the result sent to the
* server as an /ISON command.
*/
- QStringList getISONList();
+ TQStringList getISONList();
/**
* Returns _some_ of the nicks that the addressees have.
@@ -68,7 +68,7 @@ class ServerISON : public QObject
* duration between ISON's.
* - Otherwise, add all the nicks we know the addressee has.
*/
- QStringList getAddressees();
+ TQStringList getAddressees();
/**
* Given the nickname of nick that is offline (or at least not known to be online),
@@ -76,14 +76,14 @@ class ServerISON : public QObject
* @param nickname Desired nickname. Case insensitive.
* @return Addressbook entry of the nick or empty if not found.
*/
- KABC::Addressee getOfflineNickAddressee(QString& nickname);
+ KABC::Addressee getOfflineNickAddressee(TQString& nickname);
private slots:
void addressbookChanged();
void nickInfoChanged(Server* server, const NickInfoPtr nickInfo);
void slotServerGroupsChanged();
- void slotChannelMembersChanged(Server* server, const QString& channelName, bool joined, bool parted, const QString& nickname);
- void slotChannelJoinedOrUnjoined(Server* server, const QString& channelName, bool joined);
+ void slotChannelMembersChanged(Server* server, const TQString& channelName, bool joined, bool parted, const TQString& nickname);
+ void slotChannelJoinedOrUnjoined(Server* server, const TQString& channelName, bool joined);
private:
/** Map of all offline nicks in the addressbook associated with this server
@@ -94,13 +94,13 @@ class ServerISON : public QObject
/// A pointer to the server we are a member of.
Server* m_server;
/// List of nicks to watch that come from addressbook.
- QStringList m_addresseesISON;
+ TQStringList m_addresseesISON;
/// List from above merged with Watch List from preferences.
- QStringList m_watchList;
+ TQStringList m_watchList;
/// List from above but with nicks that are in joined channels eliminated.
/// There is no point in doing an ISON on such nicks because we know they are
/// online in one of the channels the user is in.
- QStringList m_ISONList;
+ TQStringList m_ISONList;
/// If this is true, then we need to call recalculateAddressee before returning m_ISONList
bool m_ISONList_invalid;
/**