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/qalculatepreferencesdialog.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/qalculatepreferencesdialog.h')
-rw-r--r-- | src/qalculatepreferencesdialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/qalculatepreferencesdialog.h b/src/qalculatepreferencesdialog.h index feb42d3..aca83d5 100644 --- a/src/qalculatepreferencesdialog.h +++ b/src/qalculatepreferencesdialog.h @@ -22,9 +22,9 @@ #include <kdialogbase.h> -class QCheckBox; -class QRadioButton; -class QLabel; +class TQCheckBox; +class TQRadioButton; +class TQLabel; class KFontRequester; class KColorButton; @@ -37,14 +37,14 @@ class QalculatePreferencesDialog : public KDialogBase { public: - QalculatePreferencesDialog(QWidget *parent = 0, const char *name = 0); + QalculatePreferencesDialog(TQWidget *parent = 0, const char *name = 0); virtual ~QalculatePreferencesDialog(); bool editPreferences(); - QCheckBox *rpnKeypadOnlyButton, *systrayButton, *statusButton, *iconsButton, *fetchExchangeRatesButton, *saveModeButton, *saveDefsButton, *dotAsSeparatorButton, *unicodeButton, *lowerCaseButton, *lowerCaseEButton, *alternativeBasePrefixButton, *spellOutLogicalOperatorsButton, *useCustomResultFontButton, *useCustomExpressionFontButton, *useCustomStatusFontButton; - QRadioButton *dotButton, *exButton, *asteriskButton, *divisionSlashButton, *divisionButton, *slashButton; - QLabel *multiplicationLabel, *divisionLabel; + TQCheckBox *rpnKeypadOnlyButton, *systrayButton, *statusButton, *iconsButton, *fetchExchangeRatesButton, *saveModeButton, *saveDefsButton, *dotAsSeparatorButton, *unicodeButton, *lowerCaseButton, *lowerCaseEButton, *alternativeBasePrefixButton, *spellOutLogicalOperatorsButton, *useCustomResultFontButton, *useCustomExpressionFontButton, *useCustomStatusFontButton; + TQRadioButton *dotButton, *exButton, *asteriskButton, *divisionSlashButton, *divisionButton, *slashButton; + TQLabel *multiplicationLabel, *divisionLabel; KFontRequester *resultFontEdit, *expressionFontEdit, *statusFontEdit; KColorButton *statusErrorColorButton, *statusWarningColorButton; |