From e727dafd5e1f28901176e42008ebc0a334d052e6 Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Tue, 15 Sep 2009 18:41:51 +0200 Subject: Slightly better code for the test. Then the test doesn't leak. Reviewed-by:ogoffart --- tests/auto/qgraphicsview/tst_qgraphicsview.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/auto/qgraphicsview/tst_qgraphicsview.cpp b/tests/auto/qgraphicsview/tst_qgraphicsview.cpp index 3bed9ce..5cb9173 100644 --- a/tests/auto/qgraphicsview/tst_qgraphicsview.cpp +++ b/tests/auto/qgraphicsview/tst_qgraphicsview.cpp @@ -3072,11 +3072,11 @@ void tst_QGraphicsView::scrollAfterResize_data() QTest::addColumn("x2"); QTest::addColumn("x3"); - QPlastiqueStyle *style = new QPlastiqueStyle; + QPlastiqueStyle style; - int frameWidth = style->pixelMetric(QStyle::PM_DefaultFrameWidth); - int extent = style->pixelMetric(QStyle::PM_ScrollBarExtent); - int inside = style->styleHint(QStyle::SH_ScrollView_FrameOnlyAroundContents); + int frameWidth = style.pixelMetric(QStyle::PM_DefaultFrameWidth); + int extent = style.pixelMetric(QStyle::PM_ScrollBarExtent); + int inside = style.styleHint(QStyle::SH_ScrollView_FrameOnlyAroundContents); int viewportWidth = 300; int scrollBarIndent = viewportWidth - extent - (inside ? 4 : 2)*frameWidth; @@ -3097,8 +3097,9 @@ void tst_QGraphicsView::scrollAfterResize() QFETCH(QTransform, x2); QFETCH(QTransform, x3); + QPlastiqueStyle style; QGraphicsView view; - view.setStyle(new QPlastiqueStyle); + view.setStyle(&style); if (reverse) view.setLayoutDirection(Qt::RightToLeft); -- cgit v0.12