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
68908488
Commit
68908488
authored
Feb 16, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2820 from DonLakeFlyer/UnusedCode
Remove unused code
parents
d27a4cc8
ae99581e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
12 deletions
+4
-12
FlightDisplayView.qml
src/FlightDisplay/FlightDisplayView.qml
+4
-5
FlightDisplayViewWidgets.qml
src/FlightDisplay/FlightDisplayViewWidgets.qml
+0
-5
QGCInstrumentWidget.qml
src/FlightMap/Widgets/QGCInstrumentWidget.qml
+0
-1
MissionEditor.qml
src/MissionEditor/MissionEditor.qml
+0
-1
No files found.
src/FlightDisplay/FlightDisplayView.qml
View file @
68908488
...
...
@@ -72,14 +72,13 @@ QGCView {
property
real
_heading
:
_activeVehicle
?
_activeVehicle
.
heading
.
value
:
_defaultHeading
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
_groundSpeedFact
:
_activeVehicle
?
_activeVehicle
.
groundSpeed
:
_emptyFact
property
Fact
_airSpeedFact
:
_activeVehicle
?
_activeVehicle
.
airSpeed
:
_emptyFact
property
Fact
_altitudeAMSLFact
:
_activeVehicle
?
_activeVehicle
.
altitudeAMSL
:
_emptyFact
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
_groundSpeedFact
:
_activeVehicle
?
_activeVehicle
.
groundSpeed
:
_emptyFact
property
Fact
_airSpeedFact
:
_activeVehicle
?
_activeVehicle
.
airSpeed
:
_emptyFact
property
bool
activeVehicleJoystickEnabled
:
_activeVehicle
?
_activeVehicle
.
joystickEnabled
:
false
property
var
_savedZoomLevel
:
0
property
real
_savedZoomLevel
:
0
property
real
pipSize
:
mainWindow
.
width
*
0.2
...
...
src/FlightDisplay/FlightDisplayViewWidgets.qml
View file @
68908488
...
...
@@ -101,7 +101,6 @@ Item {
heading
:
_heading
rollAngle
:
_roll
pitchAngle
:
_pitch
altitudeFact
:
_altitudeAMSLFact
groundSpeedFact
:
_groundSpeedFact
airSpeedFact
:
_airSpeedFact
isSatellite
:
_isSatellite
...
...
@@ -121,7 +120,6 @@ Item {
heading
:
_heading
rollAngle
:
_roll
pitchAngle
:
_pitch
altitudeFact
:
_altitudeAMSLFact
groundSpeedFact
:
_groundSpeedFact
airSpeedFact
:
_airSpeedFact
isSatellite
:
_isSatellite
...
...
@@ -137,9 +135,6 @@ Item {
textColor
:
_isSatellite
?
"
white
"
:
"
black
"
visible
:
QGroundControl
.
virtualTabletJoystick
maxHeight
:
multiTouchItem
.
y
-
y
Component.onCompleted
:
console
.
log
(
y
)
onHeightChanged
:
console
.
log
(
y
,
height
,
multiTouchItem
.
y
)
}
//-- Vertical Tool Buttons
...
...
src/FlightMap/Widgets/QGCInstrumentWidget.qml
View file @
68908488
...
...
@@ -53,7 +53,6 @@ Rectangle {
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
groundSpeedFact
:
_emptyFact
property
Fact
airSpeedFact
:
_emptyFact
property
Fact
altitudeFact
:
_emptyFact
property
real
_defaultSize
:
ScreenTools
.
defaultFontPixelSize
*
(
9
)
...
...
src/MissionEditor/MissionEditor.qml
View file @
68908488
...
...
@@ -219,7 +219,6 @@ QGCView {
QGCViewDialog
{
function
accept
()
{
hideDialog
()
console
.
log
(
filenameTextField
.
text
)
controller
.
saveMobileMissionToFile
(
filenameTextField
.
text
)
}
...
...
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