ProjectExplorerPlugin: Make settings accessor static

Change-Id: Ic4c78e4d2eefeefe55e2868a7f9db1eca52c3863
Reviewed-by: David Schulz <david.schulz@digia.com>
This commit is contained in:
hjk
2013-09-05 18:30:50 +02:00
parent 61a8257b68
commit a9ab174f9b
10 changed files with 24 additions and 25 deletions

View File

@@ -2403,7 +2403,7 @@ void DebuggerPluginPrivate::showSettingsDialog()
void DebuggerPluginPrivate::updateDebugWithoutDeployMenu()
{
const bool state = ProjectExplorerPlugin::instance()->projectExplorerSettings().deployBeforeRun;
const bool state = ProjectExplorerPlugin::projectExplorerSettings().deployBeforeRun;
m_debugWithoutDeployAction->setVisible(state);
}