diff options
author | Slávek Banko <[email protected]> | 2016-04-09 20:52:09 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-04-09 20:52:09 +0200 |
commit | 91d2d7482c36e67cb36df9d1dcdbd989911e4ceb (patch) | |
tree | c842adfbb1a172d9b61241d7dde70354e821bb75 /src/qalculateinsertfunctiondialog.h | |
parent | 4870c0c8c53d3df6ba954b2b4d8ebd87a8c43060 (diff) | |
download | qalculate-tde-91d2d7482c36e67cb36df9d1dcdbd989911e4ceb.tar.gz qalculate-tde-91d2d7482c36e67cb36df9d1dcdbd989911e4ceb.zip |
Initial TQt conversion
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/qalculateinsertfunctiondialog.h')
-rw-r--r-- | src/qalculateinsertfunctiondialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qalculateinsertfunctiondialog.h b/src/qalculateinsertfunctiondialog.h index 5954196..c834819 100644 --- a/src/qalculateinsertfunctiondialog.h +++ b/src/qalculateinsertfunctiondialog.h @@ -21,7 +21,7 @@ #define QALCULATEINSERTFUNCTIONDIALOG_H #include <kdialogbase.h> -#include <qvaluevector.h> +#include <tqvaluevector.h> class MathFunction; @@ -30,16 +30,16 @@ class QalculateInsertFunctionDialog : public KDialogBase { public: - QalculateInsertFunctionDialog(MathFunction *f, QWidget *parent = 0, const QString &selected_text = QString::null, const char *name = 0); + QalculateInsertFunctionDialog(MathFunction *f, TQWidget *parent = 0, const TQString &selected_text = TQString::null, const char *name = 0); virtual ~QalculateInsertFunctionDialog(); - QString functionExpression(); + TQString functionExpression(); MathFunction *mathFunction; - QValueVector<QWidget*> label; - QValueVector<QWidget*> entry; - QValueVector<QWidget*> type_label; + TQValueVector<TQWidget*> label; + TQValueVector<TQWidget*> entry; + TQValueVector<TQWidget*> type_label; protected slots: |