Fix compiler warnings when simply including qgraphicsscene.h
authorSimon Hausmann <simon.hausmann@nokia.com>
Sun, 27 May 2012 19:37:44 +0000 (21:37 +0200)
committerQt by Nokia <qt-info@nokia.com>
Sun, 27 May 2012 19:50:30 +0000 (21:50 +0200)
commit709111e92067f1b416939866eb3cc2232ee4faf8
treeb004210ddbaf0821c0b299bc96032477b5bd116a
parent02b80ebb52b957ae65cc23f5c9464633d9de868d
Fix compiler warnings when simply including qgraphicsscene.h

Commit 02b80ebb52b957ae65cc23f5c9464633d9de868d marked itemAt(x, y) and
itemAt(point) as deprecated, causing a warning when code calls the function.
Unfortunately the itemAt(x, y) overload calls the itemAt(point) overload,
causing a compiler warning even when not using any functions from
qgraphicsscene.h at all.

This commit fixes itemAt(x, y) to not call itemAt(point) but use the
non-deprecated items() function directly.

Change-Id: I9c4d3a070d65f3406cdab00345c56d4fc62e76c1
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/widgets/graphicsview/qgraphicsscene.h