summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/restoration
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:33 -0600
commit2b3aa210d14678345e222621ad199acc62a157ad (patch)
tree4b70114be947526643bcc3409b94a3e72fc0de56 /digikam/imageplugins/restoration
parentae7d9301dbad38c1b2135261ba932576d7f7f08b (diff)
downloaddigikam-2b3aa210d14678345e222621ad199acc62a157ad.tar.gz
digikam-2b3aa210d14678345e222621ad199acc62a157ad.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'digikam/imageplugins/restoration')
-rw-r--r--digikam/imageplugins/restoration/imageeffect_restoration.cpp6
-rw-r--r--digikam/imageplugins/restoration/restorationtool.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/digikam/imageplugins/restoration/imageeffect_restoration.cpp b/digikam/imageplugins/restoration/imageeffect_restoration.cpp
index 4472ee8..bb78636 100644
--- a/digikam/imageplugins/restoration/imageeffect_restoration.cpp
+++ b/digikam/imageplugins/restoration/imageeffect_restoration.cpp
@@ -27,7 +27,7 @@
#include <tqlabel.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqcombobox.h>
#include <tqtabwidget.h>
#include <tqfile.h>
@@ -105,7 +105,7 @@ ImageEffect_Restoration::ImageEffect_Restoration(TQWidget* parent)
TQToolTip::add(cimgLogoLabel, i18n("Visit CImg library website"));
TQLabel *typeLabel = new TQLabel(i18n("Filtering type:"), firstPage);
- typeLabel->tqsetAlignment ( TQt::AlignRight | TQt::AlignVCenter);
+ typeLabel->setAlignment ( TQt::AlignRight | TQt::AlignVCenter);
m_restorationTypeCB = new TQComboBox( false, firstPage );
m_restorationTypeCB->insertItem( i18n("None") );
m_restorationTypeCB->insertItem( i18n("Reduce Uniform Noise") );
@@ -310,7 +310,7 @@ void ImageEffect_Restoration::slotUser3()
{
KMessageBox::error(this,
i18n("\"%1\" is not a Photograph Restoration settings text file.")
- .tqarg(loadRestorationFile.fileName()));
+ .arg(loadRestorationFile.fileName()));
file.close();
return;
}
diff --git a/digikam/imageplugins/restoration/restorationtool.cpp b/digikam/imageplugins/restoration/restorationtool.cpp
index 0d67922..f0bd6a5 100644
--- a/digikam/imageplugins/restoration/restorationtool.cpp
+++ b/digikam/imageplugins/restoration/restorationtool.cpp
@@ -27,7 +27,7 @@
#include <tqlabel.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqcombobox.h>
#include <tqtabwidget.h>
#include <tqfile.h>
@@ -96,7 +96,7 @@ RestorationTool::RestorationTool(TQObject* parent)
TQToolTip::add(cimgLogoLabel, i18n("Visit CImg library website"));
TQLabel *typeLabel = new TQLabel(i18n("Filtering type:"), firstPage);
- typeLabel->tqsetAlignment ( TQt::AlignRight | TQt::AlignVCenter);
+ typeLabel->setAlignment ( TQt::AlignRight | TQt::AlignVCenter);
m_restorationTypeCB = new TQComboBox(false, firstPage);
m_restorationTypeCB->insertItem( i18n("None") );
m_restorationTypeCB->insertItem( i18n("Reduce Uniform Noise") );
@@ -317,7 +317,7 @@ void RestorationTool::slotLoadSettings()
{
KMessageBox::error(kapp->activeWindow(),
i18n("\"%1\" is not a Photograph Restoration settings text file.")
- .tqarg(loadRestorationFile.fileName()));
+ .arg(loadRestorationFile.fileName()));
file.close();
return;
}