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
f3e8727d
Commit
f3e8727d
authored
Nov 26, 2014
by
Don Gagne
Browse files
deleteLink signal changed to linkDeleted
parent
e1a5f35b
Changes
3
Show whitespace changes
Inline
Side-by-side
src/ui/DebugConsole.cc
View file @
f3e8727d
...
...
@@ -183,7 +183,7 @@ void DebugConsole::addLink(LinkInterface* link)
// Register for name changes
connect
(
link
,
SIGNAL
(
nameChanged
(
QString
)),
this
,
SLOT
(
updateLinkName
(
QString
)),
Qt
::
UniqueConnection
);
connect
(
link
,
SIGNAL
(
d
elete
Link
(
LinkInterface
*
const
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
const
)),
Qt
::
UniqueConnection
);
connect
(
link
,
SIGNAL
(
linkD
elete
d
(
LinkInterface
*
const
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
const
)),
Qt
::
UniqueConnection
);
}
void
DebugConsole
::
removeLink
(
LinkInterface
*
const
linkInterface
)
...
...
src/ui/QGCToolBar.cc
View file @
f3e8727d
...
...
@@ -219,7 +219,7 @@ void QGCToolBar::createUI()
}
connect
(
LinkManager
::
instance
(),
SIGNAL
(
newLink
(
LinkInterface
*
)),
this
,
SLOT
(
addLink
(
LinkInterface
*
)));
connect
(
LinkManager
::
instance
(),
SIGNAL
(
link
Remov
ed
(
LinkInterface
*
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
)));
connect
(
LinkManager
::
instance
(),
SIGNAL
(
link
Delet
ed
(
LinkInterface
*
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
)));
loadSettings
();
...
...
src/ui/uas/UASListWidget.cc
View file @
f3e8727d
...
...
@@ -63,7 +63,7 @@ UASListWidget::UASListWidget(QWidget *parent) : QWidget(parent),
this
->
setVisible
(
false
);
connect
(
LinkManager
::
instance
(),
SIGNAL
(
link
Remov
ed
(
LinkInterface
*
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
)));
connect
(
LinkManager
::
instance
(),
SIGNAL
(
link
Delet
ed
(
LinkInterface
*
)),
this
,
SLOT
(
removeLink
(
LinkInterface
*
)));
// Listen for when UASes are added or removed. This does not manage the UASView
// widgets that are displayed within this widget.
...
...
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