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
b541bac3
Commit
b541bac3
authored
May 11, 2010
by
pixhawk
Browse files
Fixed a bug in MAVLink generation
parent
5ccdc6bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/comm/MAVLinkXMLParser.cc
View file @
b541bac3
...
...
@@ -255,7 +255,7 @@ bool MAVLinkXMLParser::generate()
QString
messagesDirName
=
"generated"
;
QDir
dir
(
outputDirName
+
"/"
+
messagesDirName
);
// Create directory if it doesn't exist, report result in success
if
(
!
dir
.
exists
())
success
=
success
&&
dir
.
mk
dir
(
outputDirName
);
if
(
!
dir
.
exists
())
success
=
success
&&
dir
.
mk
path
(
outputDirName
+
"/"
+
messagesDirName
);
for
(
int
i
=
0
;
i
<
cFiles
.
size
();
i
++
)
{
QFile
rawFile
(
dir
.
filePath
(
cFiles
.
at
(
i
).
first
));
...
...
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