diff options
| author | Olivier Goffart <[email protected]> | 2012-04-20 16:55:59 +0200 |
|---|---|---|
| committer | Qt by Nokia <[email protected]> | 2012-04-21 17:29:40 +0200 |
| commit | 910b446fb22c9c5ab3cc65d4025efc5102d0c45e (patch) | |
| tree | 02b1470ccdbe09bfc8a24694447a7a136fd9b7fb /examples/graphicsview/elasticnodes/graphwidget.cpp | |
| parent | fcec903da7ce0ec2b95d0b1d639885c6fc71f9c3 (diff) | |
Examples: Don't use deprecated methods
Change-Id: Ib6e795f6b5bb6a3ac19882a5fb224460ef1fc8ad
Reviewed-by: Stephen Kelly <[email protected]>
Diffstat (limited to 'examples/graphicsview/elasticnodes/graphwidget.cpp')
| -rw-r--r-- | examples/graphicsview/elasticnodes/graphwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graphicsview/elasticnodes/graphwidget.cpp b/examples/graphicsview/elasticnodes/graphwidget.cpp index 4909a42292f..36005b85f49 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); |
