diff options
Diffstat (limited to 'src/qalculateeditvariabledialog.h')
-rw-r--r-- | src/qalculateeditvariabledialog.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/qalculateeditvariabledialog.h b/src/qalculateeditvariabledialog.h index 14ccd4d..a188136 100644 --- a/src/qalculateeditvariabledialog.h +++ b/src/qalculateeditvariabledialog.h @@ -22,15 +22,15 @@ #include <kdialogbase.h> -class QLabel; +class TQLabel; class KComboBox; class KLineEdit; -class QCheckBox; -class QPushButton; +class TQCheckBox; +class TQPushButton; class MathStructure; class QalculateEditNamesDialog; class KnownVariable; -class QGridLayout; +class TQGridLayout; /** @author Niklas Knutsson @@ -41,18 +41,18 @@ class QalculateEditVariableDialog : public KDialogBase { public: - QalculateEditVariableDialog(QWidget *parent = 0, const char *name = 0); + QalculateEditVariableDialog(TQWidget *parent = 0, const char *name = 0); virtual ~QalculateEditVariableDialog(); - KnownVariable *editVariable(QString category = QString::null, KnownVariable *v = NULL, MathStructure *initial_value = NULL, bool force_value = false); + KnownVariable *editVariable(TQString category = TQString::null, KnownVariable *v = NULL, MathStructure *initial_value = NULL, bool force_value = false); QalculateEditNamesDialog *names_edit_dialog; KnownVariable *edited_variable; KComboBox *categoryCombo; KLineEdit *valueEdit, *nameEdit, *titleEdit; - QLabel *namesLabel, *titleLabel, *nameLabel, *valueLabel; - QCheckBox *valueExactButton; - QPushButton *namesButton; + TQLabel *namesLabel, *titleLabel, *nameLabel, *valueLabel; + TQCheckBox *valueExactButton; + TQPushButton *namesButton; private: @@ -62,7 +62,7 @@ private: public slots: void editNames(); - void nameChanged(const QString&); + void nameChanged(const TQString&); protected slots: |