summaryrefslogtreecommitdiffstats
path: root/ksvg/plugin/svgcreator.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:48:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-05 11:58:00 +0900
commitc9e40417ac00954826c50f8f6579639255c46476 (patch)
tree09214c65532ed685a0f1ead2dbb36da3536a9986 /ksvg/plugin/svgcreator.cpp
parent1fe6cb7fd446f44bb4d5d6074708c066eb1620b2 (diff)
downloadtdegraphics-c9e40417ac00954826c50f8f6579639255c46476.tar.gz
tdegraphics-c9e40417ac00954826c50f8f6579639255c46476.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3849f5c32c10eba032a6738fd47331c0fa6afe1c)
Diffstat (limited to 'ksvg/plugin/svgcreator.cpp')
-rw-r--r--ksvg/plugin/svgcreator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ksvg/plugin/svgcreator.cpp b/ksvg/plugin/svgcreator.cpp
index 60328855..9eecc993 100644
--- a/ksvg/plugin/svgcreator.cpp
+++ b/ksvg/plugin/svgcreator.cpp
@@ -59,7 +59,7 @@ bool SVGCreator::create(const TQString &path, int width, int height, TQImage &im
pix.fill(TQt::white);
KSVG::KSVGCanvas *c = KSVG::CanvasFactory::self()->loadCanvas(width, height);
- c->setup(TQT_TQPAINTDEVICE(&pix), TQT_TQPAINTDEVICE(&pix));
+ c->setup(&pix, &pix);
doc->attach(c);
connect(doc, TQT_SIGNAL(finishedRendering()), TQT_SLOT(slotFinished()));