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
9cd72124
Commit
9cd72124
authored
Oct 31, 2013
by
Geoff Fink
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
override is not available in gcc 4.6 (only 4.7).
Removed for compatability
parent
9ac8b1c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
QGCComboBox.h
src/ui/designer/QGCComboBox.h
+1
-1
QGCCommandButton.h
src/ui/designer/QGCCommandButton.h
+1
-1
QGCParamSlider.h
src/ui/designer/QGCParamSlider.h
+1
-1
QGCTextLabel.h
src/ui/designer/QGCTextLabel.h
+1
-1
No files found.
src/ui/designer/QGCComboBox.h
View file @
9cd72124
...
...
@@ -22,7 +22,7 @@ public:
explicit
QGCComboBox
(
QWidget
*
parent
=
0
);
~
QGCComboBox
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/
...
...
src/ui/designer/QGCCommandButton.h
View file @
9cd72124
...
...
@@ -18,7 +18,7 @@ public:
explicit
QGCCommandButton
(
QWidget
*
parent
=
0
);
~
QGCCommandButton
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
void
sendCommand
();
...
...
src/ui/designer/QGCParamSlider.h
View file @
9cd72124
...
...
@@ -20,7 +20,7 @@ public:
explicit
QGCParamSlider
(
QWidget
*
parent
=
0
);
~
QGCParamSlider
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/
...
...
src/ui/designer/QGCTextLabel.h
View file @
9cd72124
...
...
@@ -19,7 +19,7 @@ public:
~
QGCTextLabel
();
void
setActiveUAS
(
UASInterface
*
uas
);
void
enableText
(
int
num
);
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
void
writeSettings
(
QSettings
&
settings
);
void
readSettings
(
const
QSettings
&
settings
);
...
...
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