summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/texture/texture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/texture/texture.cpp')
-rw-r--r--digikam/imageplugins/texture/texture.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/digikam/imageplugins/texture/texture.cpp b/digikam/imageplugins/texture/texture.cpp
index 23a1cef5..c649f2e5 100644
--- a/digikam/imageplugins/texture/texture.cpp
+++ b/digikam/imageplugins/texture/texture.cpp
@@ -36,8 +36,8 @@
namespace DigikamTextureImagesPlugin
{
-Texture::Texture(Digikam::DImg *orgImage, QObject *parent, int blendGain, QString texturePath)
- : Digikam::DImgThreadedFilter(orgImage, parent, "Texture")
+Texture::Texture(Digikam::DImg *orgImage, TQObject *tqparent, int blendGain, TQString texturePath)
+ : Digikam::DImgThreadedFilter(orgImage, tqparent, "Texture")
{
m_blendGain = blendGain;
m_texturePath = texturePath;
@@ -100,7 +100,7 @@ void Texture::filterImage(void)
else
blendGain = m_blendGain;
- // Make textured transparent layout.
+ // Make textured transparent tqlayout.
for (int x = 0; !m_cancel && x < w; x++)
{
@@ -116,7 +116,7 @@ void Texture::filterImage(void)
// in the old algorithm, this was
//teData.channel.red = (teData.channel.red * (255 - m_blendGain) +
// transData.channel.red * m_blendGain) >> 8;
- // but transdata was uninitialized, its components were apparently 0,
+ // but transdata was uninitialized, its components were aptqparently 0,
// so I removed the part after the "+".
if (sixteenBit)
@@ -139,7 +139,7 @@ void Texture::filterImage(void)
postProgress(progress);
}
- // Merge layout and image using overlay method.
+ // Merge tqlayout and image using overlay method.
for (int x = 0; !m_cancel && x < w; x++)
{