diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:52:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-04 10:09:36 +0900 |
commit | f1971ac2265db3c819c0dd135056c0fc41b9abc8 (patch) | |
tree | d7029a40e1e1ac5ff3ecc2d996e7298b6d381ba4 | |
parent | 956155c8b87caaef2feb2ee4809e5c1eda4a6120 (diff) | |
download | libkdcraw-f1971ac2265db3c819c0dd135056c0fc41b9abc8.tar.gz libkdcraw-f1971ac2265db3c819c0dd135056c0fc41b9abc8.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2eb27f1287fbb4a2717ae3a85a5b743e7967358d)
-rw-r--r-- | libkdcraw/libkdcraw/rcombobox.cpp | 2 | ||||
-rw-r--r-- | libkdcraw/libkdcraw/rnuminput.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libkdcraw/libkdcraw/rcombobox.cpp b/libkdcraw/libkdcraw/rcombobox.cpp index c20c414..ef77888 100644 --- a/libkdcraw/libkdcraw/rcombobox.cpp +++ b/libkdcraw/libkdcraw/rcombobox.cpp @@ -68,7 +68,7 @@ RComboBox::RComboBox(TQWidget *parent) d->combo = new KComboBox(this); d->resetButton = new TQToolButton(this); d->resetButton->setAutoRaise(true); - d->resetButton->setFocusPolicy(TQ_NoFocus); + d->resetButton->setFocusPolicy(TQWidget::NoFocus); d->resetButton->setIconSet(SmallIconSet("reload_page")); TQToolTip::add(d->resetButton, i18n("Reset to default value")); diff --git a/libkdcraw/libkdcraw/rnuminput.cpp b/libkdcraw/libkdcraw/rnuminput.cpp index b5c0465..39ecc3b 100644 --- a/libkdcraw/libkdcraw/rnuminput.cpp +++ b/libkdcraw/libkdcraw/rnuminput.cpp @@ -69,7 +69,7 @@ RIntNumInput::RIntNumInput(TQWidget *parent) d->input = new KIntNumInput(this); d->resetButton = new TQToolButton(this); d->resetButton->setAutoRaise(true); - d->resetButton->setFocusPolicy(TQ_NoFocus); + d->resetButton->setFocusPolicy(TQWidget::NoFocus); d->resetButton->setIconSet(SmallIconSet("reload_page")); TQToolTip::add(d->resetButton, i18n("Reset to default value")); @@ -167,7 +167,7 @@ RDoubleNumInput::RDoubleNumInput(TQWidget *parent) d->input = new KDoubleNumInput(this); d->resetButton = new TQToolButton(this); d->resetButton->setAutoRaise(true); - d->resetButton->setFocusPolicy(TQ_NoFocus); + d->resetButton->setFocusPolicy(TQWidget::NoFocus); d->resetButton->setIconSet(SmallIconSet("reload_page")); TQToolTip::add(d->resetButton, i18n("Reset to default value")); |