diff options
Diffstat (limited to 'ksvg/plugin/svgcreator.cpp')
-rw-r--r-- | ksvg/plugin/svgcreator.cpp | 2 |
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())); |