summaryrefslogtreecommitdiffstats
path: root/kpf/src/ActiveMonitorItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpf/src/ActiveMonitorItem.h')
-rw-r--r--kpf/src/ActiveMonitorItem.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kpf/src/ActiveMonitorItem.h b/kpf/src/ActiveMonitorItem.h
index 99cc13db..d3cb2e71 100644
--- a/kpf/src/ActiveMonitorItem.h
+++ b/kpf/src/ActiveMonitorItem.h
@@ -24,10 +24,10 @@
#ifndef KPF_ACTIVE_MONITOR_ITEM_H
#define KPF_ACTIVE_MONITOR_ITEM_H
-#include <qlistview.h>
-#include <qdatetime.h>
-#include <qfontmetrics.h>
-#include <qpalette.h>
+#include <tqlistview.h>
+#include <tqdatetime.h>
+#include <tqfontmetrics.h>
+#include <tqpalette.h>
class QPainter;
@@ -60,7 +60,7 @@ namespace KPF
/**
* @param server the associated Server object.
*/
- ActiveMonitorItem(Server * server, QListView * parent);
+ ActiveMonitorItem(Server * server, TQListView * parent);
virtual ~ActiveMonitorItem();
/**
@@ -107,7 +107,7 @@ namespace KPF
* @return the time of death (end of transactions with remote client)
* of the associated Server object.
*/
- QDateTime death() const;
+ TQDateTime death() const;
protected:
@@ -122,18 +122,18 @@ namespace KPF
* the number of bytes sent to the remote client by the associated
* Server object.
*/
- virtual void paintCell(QPainter *, const QColorGroup &, int, int, int);
+ virtual void paintCell(TQPainter *, const TQColorGroup &, int, int, int);
/**
* Overridden to provide for giving reasonable sizes for columns which
* do not contain text.
*/
- virtual int width(const QFontMetrics &, const QListView *, int) const;
+ virtual int width(const TQFontMetrics &, const TQListView *, int) const;
private:
Server * server_;
- QDateTime death_;
+ TQDateTime death_;
ulong size_;
ulong sent_;
};