QPainter: Fix missing variable in drawPixmap snippet

Fixes: QTCREATORBUG-29216
Pick-to: 6.5
Change-Id: If055e7b4d6ba7734bc29da29db68b3224fc734c1
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
This commit is contained in:
Andre Hartmann 2023-05-29 12:13:43 +02:00
parent 57ba6260c0
commit 2297056221

View File

@ -114,7 +114,7 @@ painter.drawPath(path);
//! [6]
QLineF line(10.0, 80.0, 90.0, 20.0);
QPainter(this);
QPainter painter(this);
painter.drawLine(line);
//! [6]
} // MyWidget::wrapper1()
@ -251,7 +251,7 @@ QRectF target(10.0, 20.0, 80.0, 60.0);
QRectF source(0.0, 0.0, 70.0, 40.0);
QPixmap pixmap(":myPixmap.png");
QPainter(this);
QPainter painter(this);
painter.drawPixmap(target, pixmap, source);
//! [16]