Skip to content
Snippets Groups Projects
Commit d06c98ed authored by Don Gagne's avatar Don Gagne
Browse files

Remove unused selectSystem slot

parent 109d6f4e
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,7 @@ Linecharts::Linecharts(QWidget *parent) : ...@@ -18,10 +18,7 @@ Linecharts::Linecharts(QWidget *parent) :
foreach (UASInterface* sys, systems) { foreach (UASInterface* sys, systems) {
addSystem(sys); addSystem(sys);
} }
connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), connect(UASManager::instance(), &UASManager::UASCreated, this, &Linecharts::addSystem);
this, SLOT(addSystem(UASInterface*)));
connect(UASManager::instance(), SIGNAL(activeUASSet(int)),
this, SLOT(selectSystem(int)));
} }
void Linecharts::showEvent(QShowEvent* event) void Linecharts::showEvent(QShowEvent* event)
...@@ -59,32 +56,6 @@ void Linecharts::hideEvent(QHideEvent* event) ...@@ -59,32 +56,6 @@ void Linecharts::hideEvent(QHideEvent* event)
emit visibilityChanged(false); emit visibilityChanged(false);
} }
void Linecharts::selectSystem(int systemid)
{
Q_UNUSED(systemid);
// QWidget* prevWidget = currentWidget();
// if (prevWidget)
// {
// LinechartWidget* chart = dynamic_cast<LinechartWidget*>(prevWidget);
// if (chart)
// {
// chart->setActive(false);
// chart->setActiveSystem(systemid);
// }
// }
// QWidget* widget = plots.value(systemid, NULL);
// if (widget)
// {
// setCurrentWidget(widget);
// LinechartWidget* chart = dynamic_cast<LinechartWidget*>(widget);
// if (chart)
// {
// chart->setActive(true);
// chart->setActiveSystem(systemid);
// }
// }
}
void Linecharts::addSystem(UASInterface* uas) void Linecharts::addSystem(UASInterface* uas)
{ {
// FIXME Add removeSystem() call // FIXME Add removeSystem() call
......
...@@ -20,8 +20,6 @@ signals: ...@@ -20,8 +20,6 @@ signals:
void visibilityChanged(bool visible); void visibilityChanged(bool visible);
public slots: public slots:
/** @brief Select plot for one system */
void selectSystem(int systemid);
/** @brief Add a new system to the list of plots */ /** @brief Add a new system to the list of plots */
void addSystem(UASInterface* uas); void addSystem(UASInterface* uas);
/** @brief Add a new generic message source (not a system) */ /** @brief Add a new generic message source (not a system) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment