summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/winpopup/libwinpopup/libwinpopup.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/winpopup/libwinpopup/libwinpopup.h')
-rw-r--r--kopete/protocols/winpopup/libwinpopup/libwinpopup.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/kopete/protocols/winpopup/libwinpopup/libwinpopup.h b/kopete/protocols/winpopup/libwinpopup/libwinpopup.h
index 77f8b8a6..0e594932 100644
--- a/kopete/protocols/winpopup/libwinpopup/libwinpopup.h
+++ b/kopete/protocols/winpopup/libwinpopup/libwinpopup.h
@@ -19,29 +19,29 @@
#define LIBWINPOPUP_H
//QT includes
-#include <qobject.h>
-#include <qmap.h>
-#include <qstringlist.h>
-#include <qtimer.h>
-#include <qdatetime.h>
+#include <tqobject.h>
+#include <tqmap.h>
+#include <tqstringlist.h>
+#include <tqtimer.h>
+#include <tqdatetime.h>
// KDE Includes
#include <kprocio.h>
#include <kfileitem.h>
-const QString WP_POPUP_DIR = QString::fromLatin1("/var/lib/winpopup");
+const TQString WP_POPUP_DIR = TQString::fromLatin1("/var/lib/winpopup");
class KDirLister;
-typedef QMap<QString, QString> stringMap;
+typedef TQMap<TQString, TQString> stringMap;
class WorkGroup
{
- QStringList groupHosts;
+ TQStringList groupHosts;
public:
- const QStringList &Hosts() { return groupHosts; }
- void addHosts(const QStringList &newHosts) { groupHosts = newHosts; }
+ const TQStringList &Hosts() { return groupHosts; }
+ void addHosts(const TQStringList &newHosts) { groupHosts = newHosts; }
};
class WinPopupLib : public QObject
@@ -49,23 +49,23 @@ class WinPopupLib : public QObject
Q_OBJECT
public:
- WinPopupLib(const QString &smbClient,int groupFreq);
+ WinPopupLib(const TQString &smbClient,int groupFreq);
~WinPopupLib();
- const QStringList getGroups();
- const QStringList getHosts(const QString &Group);
- bool checkHost(const QString &Name);
- void settingsChanged(const QString &smbClient, int groupFreq);
- void sendMessage(const QString &Body, const QString &Destination);
+ const TQStringList getGroups();
+ const TQStringList getHosts(const TQString &Group);
+ bool checkHost(const TQString &Name);
+ void settingsChanged(const TQString &smbClient, int groupFreq);
+ void sendMessage(const TQString &Body, const TQString &Destination);
private:
bool passedInitialHost;
- QMap<QString, WorkGroup> theGroups, currentGroupsMap;
- QString currentGroup, currentHost;
- QStringList todo, done, currentHosts;
+ TQMap<TQString, WorkGroup> theGroups, currentGroupsMap;
+ TQString currentGroup, currentHost;
+ TQStringList todo, done, currentHosts;
stringMap currentGroups;
- QTimer updateGroupDataTimer;
- QString smbClientBin;
+ TQTimer updateGroupDataTimer;
+ TQString smbClientBin;
int groupCheckFreq;
KDirLister *dirLister;
@@ -74,7 +74,7 @@ private:
private slots:
void slotUpdateGroupData();
- void startReadProcess(const QString &Host);
+ void startReadProcess(const TQString &Host);
void slotReadProcessReady(KProcIO *r);
void slotReadProcessExited(KProcess *r);
void slotSendProcessExited(KProcess *p);
@@ -83,7 +83,7 @@ private slots:
void slotNewMessages(const KFileItemList &items);
signals:
- void signalNewMessage(const QString &, const QDateTime &, const QString &);
+ void signalNewMessage(const TQString &, const TQDateTime &, const TQString &);
};
#endif