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
50d01b95
Commit
50d01b95
authored
Jul 18, 2013
by
Michael Carpenter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for crash involving improperly setting m_uas to 0 in some Config Widgets
parent
31a118ce
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
7 deletions
+0
-7
AccelCalibrationConfig.cc
src/ui/configuration/AccelCalibrationConfig.cc
+0
-1
AccelCalibrationConfig.h
src/ui/configuration/AccelCalibrationConfig.h
+0
-1
CompassConfig.cc
src/ui/configuration/CompassConfig.cc
+0
-1
CompassConfig.h
src/ui/configuration/CompassConfig.h
+0
-1
FlightModeConfig.h
src/ui/configuration/FlightModeConfig.h
+0
-1
FrameTypeConfig.h
src/ui/configuration/FrameTypeConfig.h
+0
-1
RadioCalibrationConfig.h
src/ui/configuration/RadioCalibrationConfig.h
+0
-1
No files found.
src/ui/configuration/AccelCalibrationConfig.cc
View file @
50d01b95
...
...
@@ -3,7 +3,6 @@
AccelCalibrationConfig
::
AccelCalibrationConfig
(
QWidget
*
parent
)
:
AP2ConfigWidget
(
parent
)
{
m_uas
=
0
;
ui
.
setupUi
(
this
);
connect
(
ui
.
calibrateAccelButton
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
calibrateButtonClicked
()));
...
...
src/ui/configuration/AccelCalibrationConfig.h
View file @
50d01b95
...
...
@@ -21,7 +21,6 @@ private slots:
private:
int
m_accelAckCount
;
Ui
::
AccelCalibrationConfig
ui
;
UASInterface
*
m_uas
;
};
#endif // ACCELCALIBRATIONCONFIG_H
src/ui/configuration/CompassConfig.cc
View file @
50d01b95
...
...
@@ -3,7 +3,6 @@
CompassConfig
::
CompassConfig
(
QWidget
*
parent
)
:
AP2ConfigWidget
(
parent
)
{
m_uas
=
0
;
ui
.
setupUi
(
this
);
ui
.
autoDecCheckBox
->
setEnabled
(
false
);
ui
.
enableCheckBox
->
setEnabled
(
false
);
...
...
src/ui/configuration/CompassConfig.h
View file @
50d01b95
...
...
@@ -20,7 +20,6 @@ private slots:
void
orientationComboChanged
(
int
index
);
private:
Ui
::
CompassConfig
ui
;
UASInterface
*
m_uas
;
};
#endif // COMPASSCONFIG_H
src/ui/configuration/FlightModeConfig.h
View file @
50d01b95
...
...
@@ -26,7 +26,6 @@ private:
QMap
<
int
,
int
>
roverModeUiIndexToIndex
;
QMap
<
int
,
int
>
planeModeUiIndexToIndex
;
Ui
::
FlightModeConfig
ui
;
UASInterface
*
m_uas
;
};
#endif // FLIGHTMODECONFIG_H
src/ui/configuration/FrameTypeConfig.h
View file @
50d01b95
...
...
@@ -52,7 +52,6 @@ private slots:
void
vFrameSelected
();
private:
Ui
::
FrameTypeConfig
ui
;
UASInterface
*
m_uas
;
};
#endif // FRAMETYPECONFIG_H
src/ui/configuration/RadioCalibrationConfig.h
View file @
50d01b95
...
...
@@ -63,7 +63,6 @@ private:
double
rcValue
[
8
];
QTimer
*
guiUpdateTimer
;
bool
m_calibrationEnabled
;
UASInterface
*
m_uas
;
Ui
::
RadioCalibrationConfig
ui
;
};
...
...
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