summaryrefslogtreecommitdiffstats
path: root/src/sources/nvidiathermalsrc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sources/nvidiathermalsrc.h')
-rw-r--r--src/sources/nvidiathermalsrc.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sources/nvidiathermalsrc.h b/src/sources/nvidiathermalsrc.h
index db2d0ab..ed66362 100644
--- a/src/sources/nvidiathermalsrc.h
+++ b/src/sources/nvidiathermalsrc.h
@@ -24,7 +24,7 @@
#include <config.h>
#include "labelsource.h"
#include <list>
-#include <qtimer.h>
+#include <tqtimer.h>
class KProcIO;
/**
@@ -32,27 +32,27 @@ class KProcIO;
* @author Ken Werner
*/
class NVidiaThermalSrc : public LabelSource {
- Q_OBJECT //macro which activates signals and slots (moc)
+ TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
*/
#ifndef HAVE_NVCONTROL
- NVidiaThermalSrc(QWidget* inParent, const QString& inID, const QString& inName);
+ NVidiaThermalSrc(TQWidget* inParent, const TQString& inID, const TQString& inName);
#else
- NVidiaThermalSrc(QWidget* inParent, const QString& inID, const QString& inName, unsigned int attrib);
+ NVidiaThermalSrc(TQWidget* inParent, const TQString& inID, const TQString& inName, unsigned int attrib);
#endif
virtual ~NVidiaThermalSrc();
/**
* Creates instances of that Source (and returns pointers to them)
*/
- static std::list<Source*> createInstances(QWidget* inParent);
+ static std::list<Source*> createInstances(TQWidget* inParent);
/**
* runs the nvidia-settings command
*/
- virtual QString fetchValue();
+ virtual TQString fetchValue();
protected slots:
/**
@@ -75,7 +75,7 @@ private:
/**
* The refresh timer
*/
- QTimer* mRefreshTimer;
+ TQTimer* mRefreshTimer;
private slots:
/**