summaryrefslogtreecommitdiffstats
path: root/examples/graphicsview/elasticnodes/graphwidget.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2012-04-20 16:55:59 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-21 17:29:40 +0200
commit910b446fb22c9c5ab3cc65d4025efc5102d0c45e (patch)
tree02b1470ccdbe09bfc8a24694447a7a136fd9b7fb /examples/graphicsview/elasticnodes/graphwidget.cpp
parentfcec903da7ce0ec2b95d0b1d639885c6fc71f9c3 (diff)
Examples: Don't use deprecated methods
Change-Id: Ib6e795f6b5bb6a3ac19882a5fb224460ef1fc8ad Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'examples/graphicsview/elasticnodes/graphwidget.cpp')
-rw-r--r--examples/graphicsview/elasticnodes/graphwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graphicsview/elasticnodes/graphwidget.cpp b/examples/graphicsview/elasticnodes/graphwidget.cpp
index 4909a42292..36005b85f4 100644
--- a/examples/graphicsview/elasticnodes/graphwidget.cpp
+++ b/examples/graphicsview/elasticnodes/graphwidget.cpp
@@ -199,7 +199,7 @@ void GraphWidget::drawBackground(QPainter *painter, const QRectF &rect)
QLinearGradient gradient(sceneRect.topLeft(), sceneRect.bottomRight());
gradient.setColorAt(0, Qt::white);
gradient.setColorAt(1, Qt::lightGray);
- painter->fillRect(rect.intersect(sceneRect), gradient);
+ painter->fillRect(rect.intersected(sceneRect), gradient);
painter->setBrush(Qt::NoBrush);
painter->drawRect(sceneRect);