summaryrefslogtreecommitdiffstats
path: root/kmilo/kmilod/monitor.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kmilo/kmilod/monitor.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmilo/kmilod/monitor.h')
-rw-r--r--kmilo/kmilod/monitor.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kmilo/kmilod/monitor.h b/kmilo/kmilod/monitor.h
index ee1581c..d50045b 100644
--- a/kmilo/kmilod/monitor.h
+++ b/kmilo/kmilod/monitor.h
@@ -23,10 +23,10 @@
#ifndef _MONITOR_H_
#define _MONITOR_H_
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qpixmap.h>
-#include <qobject.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqpixmap.h>
+#include <tqobject.h>
#include <kdemacros.h>
@@ -35,9 +35,9 @@ class KConfig;
namespace KMilo {
class KMiloInterface;
-class KDE_EXPORT Monitor : public QObject {
+class KDE_EXPORT Monitor : public TQObject {
public:
- Monitor(QObject *parent, const char *name, const QStringList&);
+ Monitor(TQObject *parent, const char *name, const TQStringList&);
virtual ~Monitor();
/**
@@ -73,13 +73,13 @@ class KDE_EXPORT Monitor : public QObject {
* Message displayed for DisplayType's that are not int
* measurable ( DisplayType::Tap for example )
*/
- virtual QString message() const;
+ virtual TQString message() const;
/**
* Custom pixmap that can be displayed be the themes
* when displaying the DisplayType.
*/
- virtual QPixmap customPixmap() const;
+ virtual TQPixmap customPixmap() const;
bool shouldPoll() const { return _poll; }