summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qgraphicswidget/tst_qgraphicswidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Restructure tests/benchmarks directory.Bjørn Erik Nilsen2010-02-081-94/+0
| | | | | | We follow the same structure as used in the src directory. This makes it easier to navigate through the jungel, especially now that we are going to add functional tests etc.
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Add missing license headers.Jason McDonald2009-08-281-0/+34
| | | | Reviewed-by: Trust Me
* Update license headers as requested by the marketing department.Jason McDonald2009-06-161-1/+1
| | | | Reviewed-by: Trust Me
* Fixes: Be a bit more smarter when calling setGeometry from itemChangeAlexis Menard2009-04-061-0/+60
RevBy: bnilsen AutoTest: Bench Details : if we come from setPosHelper (so itemChange) we don't need to do all the stuff regarding the size in setGeometry because the size doesn't change. I remove two calls to fullUpdateHelper and update() because prepareGeometryChange already call updateHelper and setPosHelper call fullUpdaterHelper too so we don't need to call them inside setGeometry. We can only call prepareGeometryChange only if we don't come from setPos.