summaryrefslogtreecommitdiffstats
path: root/tdecore/svgicons/ksvgiconengine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:53:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:53:29 +0900
commit1e5d5c92c374c8c950f01fa5aa916b3f722f98c1 (patch)
treef8538d6a34bf4683fdb8e2ed33923406b1659c09 /tdecore/svgicons/ksvgiconengine.cpp
parent34632650f1a323bdb5a0bbb0f504e3db70d87330 (diff)
downloadtdelibs-1e5d5c92c374c8c950f01fa5aa916b3f722f98c1.tar.gz
tdelibs-1e5d5c92c374c8c950f01fa5aa916b3f722f98c1.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/svgicons/ksvgiconengine.cpp')
-rw-r--r--tdecore/svgicons/ksvgiconengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/svgicons/ksvgiconengine.cpp b/tdecore/svgicons/ksvgiconengine.cpp
index 307261fa1..79f34d806 100644
--- a/tdecore/svgicons/ksvgiconengine.cpp
+++ b/tdecore/svgicons/ksvgiconengine.cpp
@@ -441,7 +441,7 @@ public:
{
// Scale, if needed
if(image.width() != (int) w || image.height() != (int) h)
- image = image.smoothScale((int) w, (int) h, TQ_ScaleFree);
+ image = image.smoothScale((int) w, (int) h, TQImage::ScaleFree);
m_engine->painter()->drawImage(x, y, image);
}