diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:52:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-02 15:52:00 +0900 |
commit | 2eb27f1287fbb4a2717ae3a85a5b743e7967358d (patch) | |
tree | 718d877033774f3524f6668f0e313b60af79de22 | |
parent | fb8e7233d7938efaee4ac7f80a1ae93a7692e0aa (diff) | |
download | libkdcraw-2eb27f1287fbb4a2717ae3a85a5b743e7967358d.tar.gz libkdcraw-2eb27f1287fbb4a2717ae3a85a5b743e7967358d.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
-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")); |