summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/can/mainwindow.cpp
diff options
context:
space:
mode:
authorAndre Hartmann <aha_1980@gmx.de>2016-11-02 20:32:21 +0100
committerAndré Hartmann <aha_1980@gmx.de>2016-11-03 09:24:14 +0000
commit1ecfef71b8149b54f0b8504769981bc2125a82a8 (patch)
tree52137300cca3787d68727da25ad9b251ffaaa200 /examples/serialbus/can/mainwindow.cpp
parenta54fd820916caed2fb13b1a38e57deb5d918f74f (diff)
CAN: One more space between timestamp and CAN frame in examples
This affects only the examples, not the QCanBus API. Change-Id: Iccfe0cb7713572eb95ae23aabab51e2f10dd3593 Reviewed-by: Andreas Wilhelm <aw@emlix.com> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples/serialbus/can/mainwindow.cpp')
-rw-r--r--examples/serialbus/can/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/serialbus/can/mainwindow.cpp b/examples/serialbus/can/mainwindow.cpp
index 19d3d27..e591ff6 100644
--- a/examples/serialbus/can/mainwindow.cpp
+++ b/examples/serialbus/can/mainwindow.cpp
@@ -200,7 +200,7 @@ void MainWindow::checkMessages()
else
view = frame.toString();
- const QString time = QString::fromLatin1("%1.%2 ")
+ const QString time = QString::fromLatin1("%1.%2 ")
.arg(frame.timeStamp().seconds(), 10, 10, QLatin1Char(' '))
.arg(frame.timeStamp().microSeconds() / 100, 4, 10, QLatin1Char('0'));