diff options
Diffstat (limited to 'src/sources/ibookg4thermalsrc.h')
-rw-r--r-- | src/sources/ibookg4thermalsrc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sources/ibookg4thermalsrc.h b/src/sources/ibookg4thermalsrc.h index 36e8340..fe988d1 100644 --- a/src/sources/ibookg4thermalsrc.h +++ b/src/sources/ibookg4thermalsrc.h @@ -23,7 +23,7 @@ #define IBOOKG4THERMALSRC_H #include "labelsource.h" #include "threadedtrigger.h" -#include <qfile.h> +#include <tqfile.h> #include <list> /** @@ -33,30 +33,30 @@ * It may work on other Apple machines as well (please let me know) */ class IbookG4ThermalSrc : 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 */ - IbookG4ThermalSrc(QWidget* inParent, const QFile& inSourceFile, const QString& inName); + IbookG4ThermalSrc(TQWidget* inParent, const TQFile& inSourceFile, const TQString& inName); virtual ~IbookG4ThermalSrc(); /** * 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 |