summaryrefslogtreecommitdiffstats
path: root/src/cpupanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpupanel.h')
-rw-r--r--src/cpupanel.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cpupanel.h b/src/cpupanel.h
index 29d9a55..77aff3c 100644
--- a/src/cpupanel.h
+++ b/src/cpupanel.h
@@ -20,7 +20,7 @@
#include "panel.h"
-#include <qlcdnumber.h>
+#include <ntqlcdnumber.h>
#include "qlcdstring.h"
/**
@@ -32,23 +32,23 @@
class CpuPanel : public Panel {
Q_OBJECT
public:
- CpuPanel(QWidget *parent=0, const char *name=0);
+ CpuPanel(TQWidget *parent=0, const char *name=0);
~CpuPanel();
protected:
- void drawContents ( QPainter *p );
- void paletteChange( const QPalette &oldPalette);
+ void drawContents ( TQPainter *p );
+ void paletteChange( const TQPalette &oldPalette);
private:
void updateInfo();
- QLCDNumber *speed;
+ TQLCDNumber *speed;
- QString sCpu,sVendor,sSpeed,sBogomips;
+ TQString sCpu,sVendor,sSpeed,sBogomips;
- void resizeEvent ( QResizeEvent *e );
+ void resizeEvent ( TQResizeEvent *e );
};
#endif