CMakeGeneratorKitAspectWidget: Remove unused m_ignoreChange

It's always false, so no-op.

Change-Id: Ie3a4de8ddaf98aff97c1672e696db21356110af2
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Jarek Kobus
2022-07-22 10:16:33 +02:00
parent d4d5cc3a7d
commit 67b26a8987

View File

@@ -382,9 +382,6 @@ private:
void refresh() override
{
if (m_ignoreChange)
return;
CMakeTool *const tool = CMakeKitAspect::cmakeTool(m_kit);
if (tool != m_currentTool)
m_currentTool = tool;
@@ -505,7 +502,6 @@ private:
}
}
bool m_ignoreChange = false;
ElidingLabel *m_label;
QPushButton *m_changeButton;
CMakeTool *m_currentTool = nullptr;