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
Frameworks
Syntax Highlighting Engine
Commits
fb03f52a
Commit
fb03f52a
authored
Mar 24, 2021
by
Christoph Cullmann
🐮
Browse files
try to fix Qt 5.14 based compile
parent
51291112
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/xml_p.h
View file @
fb03f52a
...
...
@@ -17,7 +17,7 @@ namespace Xml
/** Parse a xs:boolean attribute. */
inline
bool
attrToBool
(
QStringView
str
)
{
return
str
==
Q
Latin1
String
(
"1"
)
||
str
.
compare
(
Q
Latin1
String
(
"true"
),
Qt
::
CaseInsensitive
)
==
0
;
return
str
==
QString
Literal
(
"1"
)
||
str
.
compare
(
QString
Literal
(
"true"
),
Qt
::
CaseInsensitive
)
==
0
;
}
}
...
...
Christoph Cullmann
🐮
@cullmann
mentioned in merge request
!184 (merged)
·
Mar 24, 2021
mentioned in merge request
!184 (merged)
mentioned in merge request !184
Toggle commit list
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