Renamed slot to avoid confusement

ProjectExplorer::sessionManager -> ProjectExplorer::showSessionManager
This commit is contained in:
Thorbjørn Lindeijer
2008-12-05 16:06:09 +01:00
parent c14896b7d2
commit d0a2f567c1
2 changed files with 4 additions and 4 deletions

View File

@@ -605,7 +605,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList & /*arguments*/, QStrin
} }
} }
connect(m_sessionManagerAction, SIGNAL(triggered()), this, SLOT(sessionManager())); connect(m_sessionManagerAction, SIGNAL(triggered()), this, SLOT(showSessionManager()));
connect(m_newAction, SIGNAL(triggered()), this, SLOT(newProject())); connect(m_newAction, SIGNAL(triggered()), this, SLOT(newProject()));
#if 0 #if 0
connect(m_loadAction, SIGNAL(triggered()), this, SLOT(loadAction())); connect(m_loadAction, SIGNAL(triggered()), this, SLOT(loadAction()));
@@ -765,10 +765,10 @@ void ProjectExplorerPlugin::newProject()
updateActions(); updateActions();
} }
void ProjectExplorerPlugin::sessionManager() void ProjectExplorerPlugin::showSessionManager()
{ {
if (debug) if (debug)
qDebug() << "ProjectExplorerPlugin::newSession"; qDebug() << "ProjectExplorerPlugin::showSessionManager";
if (m_session->isDefaultVirgin()) { if (m_session->isDefaultVirgin()) {
// do not save new virgin default sessions // do not save new virgin default sessions

View File

@@ -143,7 +143,7 @@ private slots:
void unloadProject(); void unloadProject();
void clearSession(); void clearSession();
void newProject(); void newProject();
void sessionManager(); void showSessionManager();
void populateBuildConfigurationMenu(); void populateBuildConfigurationMenu();
void buildConfigurationMenuTriggered(QAction *); void buildConfigurationMenuTriggered(QAction *);
void populateRunConfigurationMenu(); void populateRunConfigurationMenu();