summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/channelmixer/channelmixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/channelmixer/channelmixer.cpp')
-rw-r--r--digikam/imageplugins/channelmixer/channelmixer.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/digikam/imageplugins/channelmixer/channelmixer.cpp b/digikam/imageplugins/channelmixer/channelmixer.cpp
index 2d40d15..849cc1e 100644
--- a/digikam/imageplugins/channelmixer/channelmixer.cpp
+++ b/digikam/imageplugins/channelmixer/channelmixer.cpp
@@ -231,41 +231,41 @@ ChannelMixerDialog::ChannelMixerDialog(TQWidget* 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()));
}
ChannelMixerDialog::~ChannelMixerDialog()