summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/coreplugin/rgbtool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/coreplugin/rgbtool.cpp')
-rw-r--r--digikam/imageplugins/coreplugin/rgbtool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/digikam/imageplugins/coreplugin/rgbtool.cpp b/digikam/imageplugins/coreplugin/rgbtool.cpp
index c337d27..457458f 100644
--- a/digikam/imageplugins/coreplugin/rgbtool.cpp
+++ b/digikam/imageplugins/coreplugin/rgbtool.cpp
@@ -161,7 +161,7 @@ RGBTool::RGBTool(TQObject* parent)
TQLabel *labelLeft = new TQLabel(i18n("Cyan"), m_gboxSettings->plainPage());
labelLeft->setAlignment ( TQt::AlignRight | TQt::AlignVCenter );
- m_rSlider = new TQSlider(-100, 100, 1, 0, Qt::Horizontal, m_gboxSettings->plainPage(), "m_rSlider");
+ m_rSlider = new TQSlider(-100, 100, 1, 0, TQt::Horizontal, m_gboxSettings->plainPage(), "m_rSlider");
m_rSlider->setTickmarks(TQSlider::Below);
m_rSlider->setTickInterval(20);
TQWhatsThis::add( m_rSlider, i18n("<p>Set here the cyan/red color adjustment of the image."));
@@ -180,7 +180,7 @@ RGBTool::RGBTool(TQObject* parent)
labelLeft = new TQLabel(i18n("Magenta"), m_gboxSettings->plainPage());
labelLeft->setAlignment(TQt::AlignRight | TQt::AlignVCenter);
- m_gSlider = new TQSlider(-100, 100, 1, 0, Qt::Horizontal, m_gboxSettings->plainPage(), "m_gSlider");
+ m_gSlider = new TQSlider(-100, 100, 1, 0, TQt::Horizontal, m_gboxSettings->plainPage(), "m_gSlider");
m_gSlider->setTickmarks(TQSlider::Below);
m_gSlider->setTickInterval(20);
TQWhatsThis::add( m_gSlider, i18n("<p>Set here the magenta/green color adjustment of the image."));
@@ -199,7 +199,7 @@ RGBTool::RGBTool(TQObject* parent)
labelLeft = new TQLabel(i18n("Yellow"), m_gboxSettings->plainPage());
labelLeft->setAlignment ( TQt::AlignRight | TQt::AlignVCenter );
- m_bSlider = new TQSlider(-100, 100, 1, 0, Qt::Horizontal, m_gboxSettings->plainPage(), "m_bSlider");
+ m_bSlider = new TQSlider(-100, 100, 1, 0, TQt::Horizontal, m_gboxSettings->plainPage(), "m_bSlider");
m_bSlider->setTickmarks(TQSlider::Below);
m_bSlider->setTickInterval(20);
TQWhatsThis::add( m_bSlider, i18n("<p>Set here the yellow/blue color adjustment of the image."));