summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:52:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:52:00 +0900
commit2eb27f1287fbb4a2717ae3a85a5b743e7967358d (patch)
tree718d877033774f3524f6668f0e313b60af79de22
parentfb8e7233d7938efaee4ac7f80a1ae93a7692e0aa (diff)
downloadlibkdcraw-2eb27f1287fbb4a2717ae3a85a5b743e7967358d.tar.gz
libkdcraw-2eb27f1287fbb4a2717ae3a85a5b743e7967358d.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--libkdcraw/libkdcraw/rcombobox.cpp2
-rw-r--r--libkdcraw/libkdcraw/rnuminput.cpp4
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"));