diff options
author | Slávek Banko <[email protected]> | 2013-08-21 21:31:42 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-08-21 21:31:42 +0200 |
commit | dc35d8eaac302891fa34128d0e2e148b4c409544 (patch) | |
tree | 7e7196abc428ea90299b38bde8b04ca24bb1c948 /src/brightnesschooserimpl.h | |
parent | e6a44e6a474364c8743c97cd87dcf0b47879324f (diff) | |
download | klcddimmer-dc35d8eaac302891fa34128d0e2e148b4c409544.tar.gz klcddimmer-dc35d8eaac302891fa34128d0e2e148b4c409544.zip |
Initial TQt conversion
Diffstat (limited to 'src/brightnesschooserimpl.h')
-rw-r--r-- | src/brightnesschooserimpl.h | 12 |
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 * ); }; |