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
5c24a2ec
Commit
5c24a2ec
authored
May 02, 2018
by
Patrick José Pereira
Browse files
QGCFlightGearLink: correct if-if else logic
Signed-off-by:
Patrick José Pereira
<
patrickelectric@gmail.com
>
parent
7d2cbff1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/comm/QGCFlightGearLink.cc
View file @
5c24a2ec
...
...
@@ -544,15 +544,9 @@ bool QGCFlightGearLink::parseUIArguments(QString uiArgs, QStringList& argList)
}
else
if
(
chr
==
'\"'
)
{
// Flip the state of being in a quoted string. Note that we specifically do not add the
// quote to the string. This replicates standards command line parsing behaviour.
if
(
chr
==
'\"'
)
{
inQuotedString
=
!
inQuotedString
;
}
inQuotedString
=
!
inQuotedString
;
previousSpace
=
false
;
}
else
{
// Flip the state of being in a quoted string
if
(
chr
==
'\"'
)
{
inQuotedString
=
!
inQuotedString
;
}
previousSpace
=
false
;
currentArg
+=
chr
;
}
...
...
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