diff options
author | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2010-11-19 10:47:42 (GMT) |
---|---|---|
committer | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2010-11-19 10:47:42 (GMT) |
commit | 1be70363b77b0a2ff75a23b5973861922f7a85c7 (patch) | |
tree | 437738bde4bf1dce82a42c42edf36f43880a568b /tests/benchmarks | |
parent | cd14bd2c7645e29af325095c1adf29d61f0e6f61 (diff) | |
download | Qt-1be70363b77b0a2ff75a23b5973861922f7a85c7.zip Qt-1be70363b77b0a2ff75a23b5973861922f7a85c7.tar.gz Qt-1be70363b77b0a2ff75a23b5973861922f7a85c7.tar.bz2 |
Fix code style
Diffstat (limited to 'tests/benchmarks')
-rw-r--r-- | tests/benchmarks/gui/graphicsview/qgraphicslinearlayout/tst_qgraphicslinearlayout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmarks/gui/graphicsview/qgraphicslinearlayout/tst_qgraphicslinearlayout.cpp b/tests/benchmarks/gui/graphicsview/qgraphicslinearlayout/tst_qgraphicslinearlayout.cpp index 0dd9543..dc415fb 100644 --- a/tests/benchmarks/gui/graphicsview/qgraphicslinearlayout/tst_qgraphicslinearlayout.cpp +++ b/tests/benchmarks/gui/graphicsview/qgraphicslinearlayout/tst_qgraphicslinearlayout.cpp @@ -93,7 +93,7 @@ void tst_QGraphicsLinearLayout::heightForWidth() QGraphicsLinearLayout *outerlayout = 0; if (nested) { outerlayout = new QGraphicsLinearLayout(form); - for(int i = 0; i < 8; i++) { + for (int i = 0; i < 8; i++) { QGraphicsLinearLayout *layout = new QGraphicsLinearLayout(Qt::Vertical); outerlayout->addItem(layout); outerlayout = layout; |