diff options
Diffstat (limited to 'kformula/formulastring.h')
-rw-r--r-- | kformula/formulastring.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/kformula/formulastring.h b/kformula/formulastring.h index 3cfdbf9d..2ee9b5f3 100644 --- a/kformula/formulastring.h +++ b/kformula/formulastring.h @@ -20,31 +20,32 @@ #ifndef FORMULASTRING_H #define FORMULASTRING_H -#include <qvariant.h> -#include <qdialog.h> +#include <tqvariant.h> +#include <tqdialog.h> -class QGridLayout; -class QHBoxLayout; -class QLabel; -class QPushButton; -class QTextEdit; -class QVBoxLayout; +class TQGridLayout; +class TQHBoxLayout; +class TQLabel; +class TQPushButton; +class TQTextEdit; +class TQVBoxLayout; class KFormulaPartView; -class FormulaString : public QDialog +class FormulaString : public TQDialog { Q_OBJECT + TQ_OBJECT public: - FormulaString( KFormulaPartView* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); + FormulaString( KFormulaPartView* tqparent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~FormulaString(); - QTextEdit* textWidget; - QPushButton* buttonHelp; - QPushButton* buttonOk; - QPushButton* buttonCancel; - QLabel* position; + TQTextEdit* textWidget; + TQPushButton* buttonHelp; + TQPushButton* buttonOk; + TQPushButton* buttonCancel; + TQLabel* position; protected slots: |