diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:55:38 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:55:38 -0600 |
| commit | 3b6fffbdfed82ed3ab983a0370a64ee7267c825e (patch) | |
| tree | a07d0a35dc0b269203327dd530b418a1add559b8 /digikam/imageplugins/coreplugin/hsl | |
| parent | 2b3aa210d14678345e222621ad199acc62a157ad (diff) | |
| download | digikam-3b6fffbdfed82ed3ab983a0370a64ee7267c825e.tar.gz digikam-3b6fffbdfed82ed3ab983a0370a64ee7267c825e.zip | |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 2b3aa210d14678345e222621ad199acc62a157ad.
Diffstat (limited to 'digikam/imageplugins/coreplugin/hsl')
| -rw-r--r-- | digikam/imageplugins/coreplugin/hsl/hsltool.cpp | 8 | ||||
| -rw-r--r-- | digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.cpp | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/digikam/imageplugins/coreplugin/hsl/hsltool.cpp b/digikam/imageplugins/coreplugin/hsl/hsltool.cpp index 7e5b5da9..b3f610f0 100644 --- a/digikam/imageplugins/coreplugin/hsl/hsltool.cpp +++ b/digikam/imageplugins/coreplugin/hsl/hsltool.cpp @@ -31,7 +31,7 @@ #include <tqhbuttongroup.h> #include <tqhgroupbox.h> #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <tqpushbutton.h> #include <tqtimer.h> #include <tqtooltip.h> @@ -104,7 +104,7 @@ HSLTool::HSLTool(TQObject* parent) TQGridLayout* gridSettings = new TQGridLayout(m_gboxSettings->plainPage(), 11, 4); TQLabel *label1 = new TQLabel(i18n("Channel:"), m_gboxSettings->plainPage()); - label1->setAlignment(TQt::AlignRight | TQt::AlignVCenter); + label1->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); m_channelCB = new TQComboBox(false, m_gboxSettings->plainPage()); m_channelCB->insertItem(i18n("Luminosity")); m_channelCB->insertItem(i18n("Red")); @@ -275,13 +275,13 @@ void HSLTool::slotChannelChanged(int channel) break; } - m_histogramWidget->repaint(false); + m_histogramWidget->tqrepaint(false); } void HSLTool::slotScaleChanged(int scale) { m_histogramWidget->m_scaleType = scale; - m_histogramWidget->repaint(false); + m_histogramWidget->tqrepaint(false); } void HSLTool::slotColorSelectedFromTarget( const DColor &color ) diff --git a/digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.cpp b/digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.cpp index d91d5024..28cce254 100644 --- a/digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.cpp +++ b/digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.cpp @@ -31,7 +31,7 @@ #include <tqvbox.h> #include <tqhbuttongroup.h> #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <tqframe.h> #include <tqlabel.h> #include <tqpushbutton.h> @@ -87,7 +87,7 @@ ImageEffect_HSL::ImageEffect_HSL(TQWidget* parent) TQGridLayout* gridSettings = new TQGridLayout(gboxSettings, 11, 4, spacingHint()); TQLabel *label1 = new TQLabel(i18n("Channel:"), gboxSettings); - label1->setAlignment ( TQt::AlignRight | TQt::AlignVCenter ); + label1->tqsetAlignment ( TQt::AlignRight | TQt::AlignVCenter ); m_channelCB = new TQComboBox( false, gboxSettings ); m_channelCB->insertItem( i18n("Luminosity") ); m_channelCB->insertItem( i18n("Red") ); @@ -262,13 +262,13 @@ void ImageEffect_HSL::slotChannelChanged(int channel) break; } - m_histogramWidget->repaint(false); + m_histogramWidget->tqrepaint(false); } void ImageEffect_HSL::slotScaleChanged(int scale) { m_histogramWidget->m_scaleType = scale; - m_histogramWidget->repaint(false); + m_histogramWidget->tqrepaint(false); } void ImageEffect_HSL::slotColorSelectedFromTarget( const Digikam::DColor &color ) |
