Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
c48c8520
Commit
c48c8520
authored
Oct 30, 2010
by
pixhawk
Browse files
Last fixes on comments handling
parent
20ff611f
Changes
1
Show whitespace changes
Inline
Side-by-side
src/comm/MAVLinkXMLParser.cc
View file @
c48c8520
...
...
@@ -219,7 +219,6 @@ bool MAVLinkXMLParser::generate()
// Everything sane, starting with enum content
currEnum
=
"enum "
+
enumName
.
toUpper
()
+
"
\n
{
\n
"
;
currEnumEnd
=
"};
\n\n
"
;
comment
=
e
.
text
();
int
nextEnumValue
=
0
;
...
...
@@ -260,9 +259,9 @@ bool MAVLinkXMLParser::generate()
}
currEnum
+=
"
\t
"
+
fieldName
.
toUpper
()
+
"="
+
fieldValue
+
","
+
fieldComment
+
"
\n
"
;
}
else
if
(
!
e
.
isNull
()
&&
e
.
tagName
()
==
"description"
)
else
if
(
!
e
2
.
isNull
()
&&
e
2
.
tagName
()
==
"description"
)
{
comment
=
e
.
text
()
+
comment
;
comment
=
e
2
.
text
()
+
comment
;
}
f
=
f
.
nextSibling
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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