aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/gifs/eventcapturer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/gifs/eventcapturer.cpp')
-rw-r--r--tests/manual/gifs/eventcapturer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/manual/gifs/eventcapturer.cpp b/tests/manual/gifs/eventcapturer.cpp
index 83e1c76b..3c355f59 100644
--- a/tests/manual/gifs/eventcapturer.cpp
+++ b/tests/manual/gifs/eventcapturer.cpp
@@ -57,7 +57,8 @@
// interact with the view here, in order for the events to be captured
qDebug() << "\n";
- foreach (CapturedEvent event, eventCapturer.capturedEvents())
+ const auto capturedEvents = eventCapturer.capturedEvents();
+ for (CapturedEvent event : capturedEvents)
qDebug().noquote() << event.cppCommand();
\endcode