summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/channelmixer/channelmixertool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/channelmixer/channelmixertool.cpp')
-rw-r--r--digikam/imageplugins/channelmixer/channelmixertool.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/digikam/imageplugins/channelmixer/channelmixertool.cpp b/digikam/imageplugins/channelmixer/channelmixertool.cpp
index 473863f..c821517 100644
--- a/digikam/imageplugins/channelmixer/channelmixertool.cpp
+++ b/digikam/imageplugins/channelmixer/channelmixertool.cpp
@@ -228,41 +228,41 @@ ChannelMixerTool::ChannelMixerTool(TQObject* parent)
// -------------------------------------------------------------
// Channels and scale selection slots.
- connect(m_channelCB, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotChannelChanged(int)));
+ connect(m_channelCB, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotChannelChanged(int)));
- connect(m_scaleBG, TQT_SIGNAL(released(int)),
- this, TQT_SLOT(slotScaleChanged(int)));
+ connect(m_scaleBG, TQ_SIGNAL(released(int)),
+ this, TQ_SLOT(slotScaleChanged(int)));
- connect(m_previewWidget, TQT_SIGNAL(spotPositionChangedFromTarget(const Digikam::DColor&, const TQPoint&)),
- this, TQT_SLOT(slotColorSelectedFromTarget(const Digikam::DColor&)));
+ connect(m_previewWidget, TQ_SIGNAL(spotPositionChangedFromTarget(const Digikam::DColor&, const TQPoint&)),
+ this, TQ_SLOT(slotColorSelectedFromTarget(const Digikam::DColor&)));
- connect(m_previewWidget, TQT_SIGNAL(signalResized()),
- this, TQT_SLOT(slotEffect()));
+ connect(m_previewWidget, TQ_SIGNAL(signalResized()),
+ this, TQ_SLOT(slotEffect()));
// -------------------------------------------------------------
// Gains settings slots.
- connect(m_redGain, TQT_SIGNAL(valueChanged(double)),
- this, TQT_SLOT(slotGainsChanged()));
+ connect(m_redGain, TQ_SIGNAL(valueChanged(double)),
+ this, TQ_SLOT(slotGainsChanged()));
- connect(m_greenGain, TQT_SIGNAL(valueChanged(double)),
- this, TQT_SLOT(slotGainsChanged()));
+ connect(m_greenGain, TQ_SIGNAL(valueChanged(double)),
+ this, TQ_SLOT(slotGainsChanged()));
- connect(m_blueGain, TQT_SIGNAL(valueChanged(double)),
- this, TQT_SLOT(slotGainsChanged()));
+ connect(m_blueGain, TQ_SIGNAL(valueChanged(double)),
+ this, TQ_SLOT(slotGainsChanged()));
- connect(m_preserveLuminosity, TQT_SIGNAL(toggled (bool)),
- this, TQT_SLOT(slotEffect()));
+ connect(m_preserveLuminosity, TQ_SIGNAL(toggled (bool)),
+ this, TQ_SLOT(slotEffect()));
- connect(m_monochrome, TQT_SIGNAL(toggled (bool)),
- this, TQT_SLOT(slotMonochromeActived(bool)));
+ connect(m_monochrome, TQ_SIGNAL(toggled (bool)),
+ this, TQ_SLOT(slotMonochromeActived(bool)));
// -------------------------------------------------------------
// Bouttons slots.
- connect(m_resetButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotResetCurrentChannel()));
+ connect(m_resetButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotResetCurrentChannel()));
}
ChannelMixerTool::~ChannelMixerTool()