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
b1e783e7
Commit
b1e783e7
authored
Feb 21, 2012
by
Bryant Mairs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use hard-coded magic numbers, use the predefined MAV_TYPE enum values.
parent
dc2098b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
MainWindow.cc
src/ui/MainWindow.cc
+8
-7
No files found.
src/ui/MainWindow.cc
View file @
b1e783e7
...
...
@@ -1211,23 +1211,24 @@ void MainWindow::UASCreated(UASInterface* uas)
QIcon
icon
;
// Set matching icon
switch
(
uas
->
getSystemType
())
{
case
0
:
switch
(
uas
->
getSystemType
())
{
case
MAV_TYPE_GENERIC
:
icon
=
QIcon
(
":/images/mavs/generic.svg"
);
break
;
case
1
:
case
MAV_TYPE_FIXED_WING
:
icon
=
QIcon
(
":/images/mavs/fixed-wing.svg"
);
break
;
case
2
:
case
MAV_TYPE_QUADROTOR
:
icon
=
QIcon
(
":/images/mavs/quadrotor.svg"
);
break
;
case
3
:
case
MAV_TYPE_COAXIAL
:
icon
=
QIcon
(
":/images/mavs/coaxial.svg"
);
break
;
case
4
:
case
MAV_TYPE_HELICOPTER
:
icon
=
QIcon
(
":/images/mavs/helicopter.svg"
);
break
;
case
5
:
case
MAV_TYPE_GCS
:
icon
=
QIcon
(
":/images/mavs/groundstation.svg"
);
break
;
default:
...
...
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