summaryrefslogtreecommitdiffstats
path: root/kpf/src/ActiveMonitorItem.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kpf/src/ActiveMonitorItem.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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_;
};