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
17eee4a9
Commit
17eee4a9
authored
Jan 24, 2017
by
Alexey Bulatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make virtual method isAutoConnectAllowed to return false
parent
afcf6615
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
BluetoothLink.h
src/comm/BluetoothLink.h
+0
-1
LinkConfiguration.h
src/comm/LinkConfiguration.h
+1
-1
LogReplayLink.h
src/comm/LogReplayLink.h
+0
-1
No files found.
src/comm/BluetoothLink.h
View file @
17eee4a9
...
...
@@ -104,7 +104,6 @@ public:
void
loadSettings
(
QSettings
&
settings
,
const
QString
&
root
);
void
saveSettings
(
QSettings
&
settings
,
const
QString
&
root
);
void
updateSettings
();
bool
isAutoConnectAllowed
()
{
return
false
;
}
QString
settingsURL
()
{
return
"BluetoothSettings.qml"
;
}
public
slots
:
...
...
src/comm/LinkConfiguration.h
View file @
17eee4a9
...
...
@@ -93,7 +93,7 @@ public:
* Is Auto Connect allowed for this type?
* @return True if this type can be set as an Auto Connect configuration
*/
virtual
bool
isAutoConnectAllowed
()
{
return
tru
e
;
}
virtual
bool
isAutoConnectAllowed
()
{
return
fals
e
;
}
/*!
* @brief Connection type
...
...
src/comm/LogReplayLink.h
View file @
17eee4a9
...
...
@@ -40,7 +40,6 @@ public:
void
loadSettings
(
QSettings
&
settings
,
const
QString
&
root
);
void
saveSettings
(
QSettings
&
settings
,
const
QString
&
root
);
void
updateSettings
();
bool
isAutoConnectAllowed
()
{
return
false
;
}
QString
settingsURL
()
{
return
"LogReplaySettings.qml"
;
}
signals:
void
fileNameChanged
();
...
...
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