diff options
Diffstat (limited to 'src/sources/ibmacpifansrc.h')
-rw-r--r-- | src/sources/ibmacpifansrc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sources/ibmacpifansrc.h b/src/sources/ibmacpifansrc.h index 7af22fc..95a38e0 100644 --- a/src/sources/ibmacpifansrc.h +++ b/src/sources/ibmacpifansrc.h @@ -22,7 +22,7 @@ #define IBMACPIFANSRC_H #include "labelsource.h" #include "threadedtrigger.h" -#include <qfile.h> +#include <tqfile.h> #include <list> /** @@ -30,30 +30,30 @@ * which is provided by the ibm-acpi kernel module. */ class IBMACPIFanSrc : 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 and index */ - IBMACPIFanSrc(QWidget* inParent, const QFile& inSourceFile); + IBMACPIFanSrc(TQWidget* inParent, const TQFile& inSourceFile); virtual ~IBMACPIFanSrc(); /** * Creates instances of that Source (and returns pointers to them) */ - static std::list<Source*> createInstances(QWidget* inParent); + static std::list<Source*> createInstances(TQWidget* inParent); /** * Fetches and returns the value of this source * This method is called from a thread so don't call it directly */ - virtual QString fetchValue(); + virtual TQString fetchValue(); private: /** * The file from which the value is read */ - QFile mSourceFile; + TQFile mSourceFile; /** * triggers the fetchValue method |