Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
5c24a2ec
Commit
5c24a2ec
authored
May 02, 2018
by
Patrick José Pereira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QGCFlightGearLink: correct if-if else logic
Signed-off-by:
Patrick José Pereira
<
patrickelectric@gmail.com
>
parent
7d2cbff1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
QGCFlightGearLink.cc
src/comm/QGCFlightGearLink.cc
+1
-7
No files found.
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
;
}
previousSpace
=
false
;
}
else
{
// Flip the state of being in a quoted string
if
(
chr
==
'\"'
)
{
inQuotedString
=
!
inQuotedString
;
}
previousSpace
=
false
;
currentArg
+=
chr
;
}
...
...
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