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
a5808707
Commit
a5808707
authored
Feb 24, 2017
by
Don Gagne
Browse files
Correct init of _editorQml
parent
cda355d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/MissionManager/SimpleMissionItem.cc
View file @
a5808707
...
...
@@ -65,7 +65,7 @@ SimpleMissionItem::SimpleMissionItem(Vehicle* vehicle, QObject* parent)
,
_syncingAltitudeRelativeToHomeAndFrame
(
false
)
,
_syncingHeadingDegreesAndParam4
(
false
)
{
_editorQml
=
"qrc:/qml/SimpleItemEditor.qml"
;
_editorQml
=
QStringLiteral
(
"qrc:/qml/SimpleItemEditor.qml"
)
;
_altitudeRelativeToHomeFact
.
setRawValue
(
true
);
...
...
@@ -97,6 +97,8 @@ SimpleMissionItem::SimpleMissionItem(Vehicle* vehicle, const MissionItem& missio
,
_syncingAltitudeRelativeToHomeAndFrame
(
false
)
,
_syncingHeadingDegreesAndParam4
(
false
)
{
_editorQml
=
QStringLiteral
(
"qrc:/qml/SimpleItemEditor.qml"
);
_altitudeRelativeToHomeFact
.
setRawValue
(
true
);
_setupMetaData
();
...
...
@@ -122,6 +124,8 @@ SimpleMissionItem::SimpleMissionItem(const SimpleMissionItem& other, QObject* pa
,
_syncingAltitudeRelativeToHomeAndFrame
(
false
)
,
_syncingHeadingDegreesAndParam4
(
false
)
{
_editorQml
=
QStringLiteral
(
"qrc:/qml/SimpleItemEditor.qml"
);
_setupMetaData
();
_connectSignals
();
...
...
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