forked from qt-creator/qt-creator
Renamed slot to avoid confusement
ProjectExplorer::sessionManager -> ProjectExplorer::showSessionManager
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user