diff options
Diffstat (limited to 'digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp')
-rw-r--r-- | digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp b/digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp index 553cf869..98719423 100644 --- a/digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp +++ b/digikam/imageplugins/coreplugin/ratiocrop/imageeffect_ratiocrop.cpp @@ -140,11 +140,11 @@ ImageEffect_RatioCrop::ImageEffect_RatioCrop(TQWidget* parent) // ------------------------------------------------------------- m_customLabel1 = new TQLabel(i18n("Custom ratio:"), cropSelection); - m_customLabel1->tqsetAlignment(AlignLeft|AlignVCenter); + m_customLabel1->setAlignment(AlignLeft|AlignVCenter); m_customRatioNInput = new KIntSpinBox(1, 10000, 1, 1, 10, cropSelection); TQWhatsThis::add( m_customRatioNInput, i18n("<p>Set here the desired custom aspect numerator value.")); m_customLabel2 = new TQLabel(" : ", cropSelection); - m_customLabel2->tqsetAlignment(AlignCenter|AlignVCenter); + m_customLabel2->setAlignment(AlignCenter|AlignVCenter); m_customRatioDInput = new KIntSpinBox(1, 10000, 1, 1, 10, cropSelection); TQWhatsThis::add( m_customRatioDInput, i18n("<p>Set here the desired custom aspect denominator value.")); |