summaryrefslogtreecommitdiffstats
path: root/juk/systemtray.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:17:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:17:17 -0600
commitfc02f656b0c119d77b36b1f8d160d525eac44614 (patch)
tree486f6ade10e107f7b64df60172bb4d605c750cea /juk/systemtray.cpp
parent53a028a0f6e052a78e045d687d0839db8a0f16f0 (diff)
downloadtdemultimedia-fc02f656b0c119d77b36b1f8d160d525eac44614.tar.gz
tdemultimedia-fc02f656b0c119d77b36b1f8d160d525eac44614.zip
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'juk/systemtray.cpp')
-rw-r--r--juk/systemtray.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/juk/systemtray.cpp b/juk/systemtray.cpp
index e71fc37d..48e6ba5f 100644
--- a/juk/systemtray.cpp
+++ b/juk/systemtray.cpp
@@ -432,7 +432,7 @@ TQPixmap SystemTray::createPixmap(const TQString &pixName)
TQImage bgImage = bgPix.convertToImage(); // Probably 22x22
TQImage fgImage = fgPix.convertToImage(); // Should be 16x16
- KIconEffect::semiTransparent(bgImage);
+ TDEIconEffect::semiTransparent(bgImage);
copyImage(bgImage, fgImage, (bgImage.width() - fgImage.width()) / 2,
(bgImage.height() - fgImage.height()) / 2);
@@ -602,7 +602,7 @@ static bool copyImage(TQImage &dest, TQImage &src, int x, int y)
if((y + src.height()) >= dest.height())
return false;
- // We want to use KIconEffect::overlay to do this, since it handles
+ // We want to use TDEIconEffect::overlay to do this, since it handles
// alpha, but the images need to be the same size. We can handle that.
TQImage large_src(dest);
@@ -628,7 +628,7 @@ static bool copyImage(TQImage &dest, TQImage &src, int x, int y)
// Apply effect to image
- KIconEffect::overlay(dest, large_src);
+ TDEIconEffect::overlay(dest, large_src);
return true;
}