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
3d00780b
Commit
3d00780b
authored
Mar 04, 2015
by
dogmaphobic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed duplicate method. Don and I both added the same method concurrently.
parent
86fd4a29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
+5
-9
MainWindow.h
src/ui/MainWindow.h
+1
-5
SettingsDialog.cc
src/ui/SettingsDialog.cc
+4
-4
No files found.
src/ui/MainWindow.h
View file @
3d00780b
...
...
@@ -126,12 +126,8 @@ public:
/// @brief Restore (and connects) the last used connection (if any)
void
restoreLastUsedConnection
();
#ifdef UNITTEST_BUILD
// Returns a pointer to the MainToolBar so that unit tests can change views.
/// @brief Gets a pointer to the Main Tool Bar
MainToolBar
*
getMainToolBar
(
void
)
{
return
_mainToolBar
;
}
#endif
MainToolBar
*
getToolBar
()
{
return
_mainToolBar
;
}
public
slots
:
/** @brief Show the application settings */
...
...
src/ui/SettingsDialog.cc
View file @
3d00780b
...
...
@@ -177,20 +177,20 @@ void SettingsDialog::_selectSavedFilesDirectory(void)
void
SettingsDialog
::
on_showGPS_clicked
(
bool
checked
)
{
_mainWindow
->
getToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_GPS
,
checked
);
_mainWindow
->
get
Main
ToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_GPS
,
checked
);
}
void
SettingsDialog
::
on_showBattery_clicked
(
bool
checked
)
{
_mainWindow
->
getToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_BATTERY
,
checked
);
_mainWindow
->
get
Main
ToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_BATTERY
,
checked
);
}
void
SettingsDialog
::
on_showMessages_clicked
(
bool
checked
)
{
_mainWindow
->
getToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_MESSAGES
,
checked
);
_mainWindow
->
get
Main
ToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_MESSAGES
,
checked
);
}
void
SettingsDialog
::
on_showMav_clicked
(
bool
checked
)
{
_mainWindow
->
getToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_MAV
,
checked
);
_mainWindow
->
get
Main
ToolBar
()
->
viewStateChanged
(
TOOL_BAR_SHOW_MAV
,
checked
);
}
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