summaryrefslogtreecommitdiffstats
path: root/src/brightnesschooserimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/brightnesschooserimpl.h')
-rw-r--r--src/brightnesschooserimpl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/brightnesschooserimpl.h b/src/brightnesschooserimpl.h
index 2bf2fa9..c97786e 100644
--- a/src/brightnesschooserimpl.h
+++ b/src/brightnesschooserimpl.h
@@ -22,7 +22,7 @@
#include <brightnesschooser.h>
-class QProcess;
+class TQProcess;
/**
Implementation slots for BrightnessChooser
@@ -33,7 +33,7 @@ class BrightnessChooserImpl : public BrightnessChooser
{
Q_OBJECT
public:
- BrightnessChooserImpl(QWidget *parent = 0, const char *name = 0);
+ BrightnessChooserImpl(TQWidget *parent = 0, const char *name = 0);
~BrightnessChooserImpl();
@@ -47,13 +47,13 @@ public:
* Returns the current value of brightness.
* @return
*/
- const QString getValue();
+ const TQString getValue();
/**
* Sets the current value of brightness
* @param val
*/
- void setValue(const QString &val);
+ void setValue(const TQString &val);
/// retrieve the current brightness
void getBrightness();
@@ -68,14 +68,14 @@ public:
private:
/// process instance used to adjust brightness
- QProcess *proc;
+ TQProcess *proc;
signals:
void valueUpdated();
protected:
/// to intercept the Enter key press and direct it to OK button
- void keyPressEvent( QKeyEvent * );
+ void keyPressEvent( TQKeyEvent * );
};