From fc02f656b0c119d77b36b1f8d160d525eac44614 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 4 Feb 2013 14:17:17 -0600 Subject: Rename KIcon to enhance compatibility with KDE4 --- juk/systemtray.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'juk/systemtray.cpp') 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; } -- cgit v1.2.1