Skip to content
Snippets Groups Projects
Commit e3d5d491 authored by Nick Draper's avatar Nick Draper
Browse files

Rename a private slot that was being hidden by a signal

in a derived class

re #28185
parent 83182f7e
Branches 28185_remove_warning_only_visible_to_devs_on_startup
No related tags found
No related merge requests found
...@@ -190,7 +190,7 @@ protected slots: ...@@ -190,7 +190,7 @@ protected slots:
private slots: private slots:
void handleShowSaveAlgorithm(); void handleShowSaveAlgorithm();
void treeSelectionChanged(); void onTreeSelectionChanged();
void onClickGroupButton(); void onClickGroupButton();
void onClickLoad(); void onClickLoad();
void onLoadAccept(); void onLoadAccept();
......
...@@ -170,7 +170,7 @@ void WorkspaceTreeWidget::setupConnections() { ...@@ -170,7 +170,7 @@ void WorkspaceTreeWidget::setupConnections() {
connect(this, SIGNAL(signalClearView()), this, SLOT(handleClearView()), connect(this, SIGNAL(signalClearView()), this, SLOT(handleClearView()),
Qt::QueuedConnection); Qt::QueuedConnection);
connect(m_tree, SIGNAL(itemSelectionChanged()), this, connect(m_tree, SIGNAL(itemSelectionChanged()), this,
SLOT(treeSelectionChanged())); SLOT(onTreeSelectionChanged()));
connect(m_tree, SIGNAL(itemExpanded(QTreeWidgetItem *)), this, connect(m_tree, SIGNAL(itemExpanded(QTreeWidgetItem *)), this,
SLOT(populateChildData(QTreeWidgetItem *))); SLOT(populateChildData(QTreeWidgetItem *)));
} }
...@@ -900,7 +900,7 @@ bool WorkspaceTreeWidget::shouldBeSelected(QString name) const { ...@@ -900,7 +900,7 @@ bool WorkspaceTreeWidget::shouldBeSelected(QString name) const {
return false; return false;
} }
void WorkspaceTreeWidget::treeSelectionChanged() { void WorkspaceTreeWidget::onTreeSelectionChanged() {
// get selected workspaces // get selected workspaces
auto items = m_tree->selectedItems(); auto items = m_tree->selectedItems();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment