diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py
index 4e78f6e61fdfa3c28c78501bea07d0d775f791a7..5c28e63cd1fed06344ca3321b789a16c84716908 100644
--- a/share/qtcreator/gdbmacros/dumper.py
+++ b/share/qtcreator/gdbmacros/dumper.py
@@ -1353,7 +1353,7 @@ class Dumper:
 
     def listAnonymous(self, item, name, type):
         for field in type.fields():
-            warn("FIELD NAME: %s" % field.name)
+            #warn("FIELD NAME: %s" % field.name)
             if len(field.name) > 0:
                 value = item.value[field.name]
                 child = Item(value, item.iname, field.name, field.name)
diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp
index f334fadbd06123a07ce79134d00c21a31317fd47..5834b359a9a88e9a1dd36e8b12c0341c767d244b 100644
--- a/tests/manual/gdbdebugger/simple/app.cpp
+++ b/tests/manual/gdbdebugger/simple/app.cpp
@@ -236,19 +236,6 @@ void testPeekAndPoke3()
         a.i = 3; // Continue.
     }
 
-    // QImage display
-    {
-        QImage im(QSize(200, 200), QImage::Format_RGB32);
-        im.fill(QColor(200, 100, 130).rgba());
-        QPainter pain;
-        pain.begin(&im);
-        pain.drawLine(2, 2, 130, 130); // Break here.
-        // Toggle between "Normal" and "Displayed" in L&W Context Menu, entry "Display of Type QImage". Step.
-        pain.drawLine(4, 2, 130, 140); // Step.
-        pain.drawRect(30, 30, 80, 80);
-        pain.end();
-    }
-
     // Complex watchers
     {
         struct S { int a; double b; } s[10];
@@ -259,6 +246,23 @@ void testPeekAndPoke3()
             // Expand it, continue stepping.
         }
     }
+
+    // QImage display
+    {
+        QImage im(QSize(200, 200), QImage::Format_RGB32);
+        im.fill(QColor(200, 10, 30).rgba());
+        QPainter pain;
+        pain.begin(&im);
+        pain.setPen(QPen(Qt::black, 5.0, Qt::SolidLine, Qt::RoundCap));
+        pain.drawEllipse(20, 20, 160, 160); // Break here. Step.
+        // Toggle between "Normal" and "Displayed" in L&W Context Menu, entry "Display of Type QImage". Step.
+        pain.drawArc(70, 115, 60, 30, 200 * 16, 140 * 16);
+        pain.setBrush(Qt::black);
+        pain.drawEllipse(65, 70, 15, 15); // Step.
+        pain.drawEllipse(120, 70, 15, 15); // Step.
+        pain.end();
+    }
+
 }
 
 void testAnonymous()