Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KItinerary
Commits
d6ba3c3a
Commit
d6ba3c3a
authored
May 09, 2021
by
Volker Krause
Browse files
Ignore the raw data property when dumping ERA SSB v3 content
parent
e4e158a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tools/ticket-barcode-dump.cpp
View file @
d6ba3c3a
...
...
@@ -50,6 +50,11 @@ static void dumpSsbv3Ticket(const QByteArray &data)
case
QVariant
::
Int
:
std
::
cout
<<
prop
.
name
()
<<
": "
<<
value
.
toInt
()
<<
std
::
endl
;
break
;
case
QVariant
::
ByteArray
:
if
(
std
::
strcmp
(
prop
.
name
(),
"rawData"
)
==
0
)
{
break
;
}
[[
fallthrough
]];
default:
std
::
cout
<<
prop
.
name
()
<<
": "
<<
qPrintable
(
value
.
toString
())
<<
std
::
endl
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment