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"));