Skip to content
Snippets Groups Projects
Commit 169a224e authored by hjk's avatar hjk
Browse files

Debugger: Use "unused" variables in autotests


Change-Id: I89872cd7792aed5e23331af4ae683dffa3c1291d
Reviewed-by: default avatarNiels Weber <niels.weber@theqtcompany.com>
parent d8662f7a
No related branches found
No related tags found
No related merge requests found
......@@ -1857,7 +1857,7 @@ void tst_Dumpers::dumper_data()
"pain.drawLine(2, 2, 130, 130);\n"
"pain.end();\n"
"QPixmap pm = QPixmap::fromImage(im);\n"
"unused(&pm);\n")
"unused(&app, &pm);\n")
+ GuiProfile()
......@@ -5814,7 +5814,7 @@ void tst_Dumpers::dumper_data()
"pol.append(QPointF(2, 4));\n"
"pol.append(QPointF(1, 4));\n"
"QGraphicsPolygonItem *p = sc.addPolygon(pol);\n"
"unused(&p);\n")
"unused(&app, &p);\n")
+ GuiProfile()
+ Check("pol", "<5 items>", "@QPolygonF")
+ Check("p", "<5 items>", "@QGraphicsPolygonItem");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment