Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
d0a2f567
Commit
d0a2f567
authored
Dec 05, 2008
by
Thorbjørn Lindeijer
Browse files
Renamed slot to avoid confusement
ProjectExplorer::sessionManager -> ProjectExplorer::showSessionManager
parent
c14896b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectexplorer.cpp
View file @
d0a2f567
...
...
@@ -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
(
s
howS
essionManager
()));
connect
(
m_newAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
newProject
()));
#if 0
connect(m_loadAction, SIGNAL(triggered()), this, SLOT(loadAction()));
...
...
@@ -765,10 +765,10 @@ void ProjectExplorerPlugin::newProject()
updateActions
();
}
void
ProjectExplorerPlugin
::
sessionManager
()
void
ProjectExplorerPlugin
::
s
howS
essionManager
()
{
if
(
debug
)
qDebug
()
<<
"ProjectExplorerPlugin::
ne
wSession"
;
qDebug
()
<<
"ProjectExplorerPlugin::
sho
wSession
Manager
"
;
if
(
m_session
->
isDefaultVirgin
())
{
// do not save new virgin default sessions
...
...
src/plugins/projectexplorer/projectexplorer.h
View file @
d0a2f567
...
...
@@ -143,7 +143,7 @@ private slots:
void
unloadProject
();
void
clearSession
();
void
newProject
();
void
sessionManager
();
void
s
howS
essionManager
();
void
populateBuildConfigurationMenu
();
void
buildConfigurationMenuTriggered
(
QAction
*
);
void
populateRunConfigurationMenu
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment