diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:20:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:20:24 -0600 |
commit | bf80a27386386c1d97454c80c6947de3023014ff (patch) | |
tree | e14a70aec8a0a8ab82d67e7dbe4920fb401e17ef /kcalc | |
parent | 23e0affc4de269f3a7852536ef3a4f3df4570ae7 (diff) | |
download | tdeutils-bf80a27386386c1d97454c80c6947de3023014ff.tar.gz tdeutils-bf80a27386386c1d97454c80c6947de3023014ff.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'kcalc')
-rw-r--r-- | kcalc/kcalc.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kcalc/kcalc.cpp b/kcalc/kcalc.cpp index 8fc490b..7dd0423 100644 --- a/kcalc/kcalc.cpp +++ b/kcalc/kcalc.cpp @@ -473,8 +473,8 @@ void KCalculator::setupStatusbar(void) TQWidget* KCalculator::setupNumericKeys(TQWidget *parent) { - Q_CHECK_PTR(mSmallPage); - Q_CHECK_PTR(mLargePage); + TQ_CHECK_PTR(mSmallPage); + TQ_CHECK_PTR(mLargePage); TQWidget *thisPage = new TQWidget(parent); @@ -743,7 +743,7 @@ TQWidget* KCalculator::setupNumericKeys(TQWidget *parent) void KCalculator::setupLogicKeys(TQWidget *parent) { - Q_CHECK_PTR(parent); + TQ_CHECK_PTR(parent); KCalcButton *tmp_pb; @@ -796,7 +796,7 @@ void KCalculator::setupLogicKeys(TQWidget *parent) void KCalculator::setupScientificKeys(TQWidget *parent) { - Q_CHECK_PTR(parent); + TQ_CHECK_PTR(parent); KCalcButton *tmp_pb; @@ -878,7 +878,7 @@ void KCalculator::setupScientificKeys(TQWidget *parent) void KCalculator::setupStatisticKeys(TQWidget *parent) { - Q_CHECK_PTR(parent); + TQ_CHECK_PTR(parent); KCalcButton *tmp_pb; @@ -951,7 +951,7 @@ void KCalculator::setupStatisticKeys(TQWidget *parent) void KCalculator::setupConstantsKeys(TQWidget *parent) { - Q_CHECK_PTR(parent); + TQ_CHECK_PTR(parent); ConstButtonGroup = new TQButtonGroup(0, "Const-Button-Group"); connect(ConstButtonGroup, TQT_SIGNAL(clicked(int)), TQT_SLOT(slotConstclicked(int))); |