From f1971ac2265db3c819c0dd135056c0fc41b9abc8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 2 Sep 2023 15:52:00 +0900 Subject: Replace TQ_*Focus* and TQ_Scale* defines Signed-off-by: Michele Calgaro (cherry picked from commit 2eb27f1287fbb4a2717ae3a85a5b743e7967358d) --- libkdcraw/libkdcraw/rcombobox.cpp | 2 +- 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")); -- cgit v1.2.3