diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-04-09 20:52:09 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-04-09 20:52:09 +0200 |
commit | 91d2d7482c36e67cb36df9d1dcdbd989911e4ceb (patch) | |
tree | c842adfbb1a172d9b61241d7dde70354e821bb75 /src/qalculateinsertmatrixvectordialog.h | |
parent | 4870c0c8c53d3df6ba954b2b4d8ebd87a8c43060 (diff) | |
download | qalculate-tde-91d2d7482c36e67cb36df9d1dcdbd989911e4ceb.tar.gz qalculate-tde-91d2d7482c36e67cb36df9d1dcdbd989911e4ceb.zip |
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/qalculateinsertmatrixvectordialog.h')
-rw-r--r-- | src/qalculateinsertmatrixvectordialog.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/qalculateinsertmatrixvectordialog.h b/src/qalculateinsertmatrixvectordialog.h index 32ba4ea..1437d38 100644 --- a/src/qalculateinsertmatrixvectordialog.h +++ b/src/qalculateinsertmatrixvectordialog.h @@ -22,13 +22,13 @@ #include <kdialogbase.h> -class QTable; -class QLabel; -class QSpinBox; -class QRadioButton; +class TQTable; +class TQLabel; +class TQSpinBox; +class TQRadioButton; class KComboBox; class KLineEdit; -class QPushButton; +class TQPushButton; class MathStructure; class QalculateEditNamesDialog; class KnownVariable; @@ -42,19 +42,19 @@ class QalculateInsertMatrixVectorDialog : public KDialogBase { public: - QalculateInsertMatrixVectorDialog(QWidget *parent = 0, const char *name = 0); + QalculateInsertMatrixVectorDialog(TQWidget *parent = 0, const char *name = 0); virtual ~QalculateInsertMatrixVectorDialog(); - QString newMatrix(); - QString newVector(); - QString editMatrixVector(const MathStructure *initial_value = NULL, bool create_vector = false, bool is_text_struct = false, bool is_result = false); + TQString newMatrix(); + TQString newVector(); + TQString editMatrixVector(const MathStructure *initial_value = NULL, bool create_vector = false, bool is_text_struct = false, bool is_result = false); - QLabel *elementsLabel; - QRadioButton *matrixButton, *vectorButton; - QTable *elementsTable; - QSpinBox *rowsBox, *columnsBox; - QString matrixstr; - QPushButton *insertSelectionButton; + TQLabel *elementsLabel; + TQRadioButton *matrixButton, *vectorButton; + TQTable *elementsTable; + TQSpinBox *rowsBox, *columnsBox; + TQString matrixstr; + TQPushButton *insertSelectionButton; public slots: |