forked from qt-creator/qt-creator
analyzer: remove unneeded AnalyzerPluginPrivate class
Change-Id: I2fac5e0e8c796d6009ba30da82a5a7a67672851d Reviewed-on: http://codereview.qt.nokia.com/1517 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -775,16 +775,16 @@ AnalyzerManager::~AnalyzerManager()
|
||||
|
||||
void AnalyzerManager::extensionsInitialized()
|
||||
{
|
||||
if (d->m_tools.isEmpty())
|
||||
if (m_instance->d->m_tools.isEmpty())
|
||||
return;
|
||||
|
||||
foreach (IAnalyzerTool *tool, d->m_tools)
|
||||
foreach (IAnalyzerTool *tool, m_instance->d->m_tools)
|
||||
tool->extensionsInitialized();
|
||||
}
|
||||
|
||||
void AnalyzerManager::shutdown()
|
||||
{
|
||||
d->saveToolSettings(d->m_currentTool, d->m_currentMode);
|
||||
m_instance->d->saveToolSettings(m_instance->d->m_currentTool, m_instance->d->m_currentMode);
|
||||
}
|
||||
|
||||
void AnalyzerManager::addTool(IAnalyzerTool *tool, const StartModes &modes)
|
||||
|
||||
Reference in New Issue
Block a user