summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectexplorer.cpp
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-03-05 22:30:59 +0100
committerRobert Löhning <robert.loehning@nokia.com>2012-03-06 12:46:52 +0100
commitb41171c8473e7202f67aaa0f7ace1bf40e02919e (patch)
tree47de72e1d07c7bd86f7f576417ae6c32671c12a5 /src/plugins/projectexplorer/projectexplorer.cpp
parent9f05e6495dfeda3b78ba2da356832367194633bb (diff)
downloadqt-creator-b41171c8473e7202f67aaa0f7ace1bf40e02919e.tar.gz
Normalized connect()s
Change-Id: Id353ab140a46e06ffc3abf667ab3b234e749e17c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorer.cpp')
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index 68a354792c..9e68aeda44 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -343,17 +343,17 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
d->m_session = new SessionManager(this);
- connect(d->m_session, SIGNAL(projectAdded(ProjectExplorer::Project *)),
+ connect(d->m_session, SIGNAL(projectAdded(ProjectExplorer::Project*)),
this, SIGNAL(fileListChanged()));
- connect(d->m_session, SIGNAL(aboutToRemoveProject(ProjectExplorer::Project *)),
- this, SLOT(invalidateProject(ProjectExplorer::Project *)));
- connect(d->m_session, SIGNAL(projectRemoved(ProjectExplorer::Project *)),
+ connect(d->m_session, SIGNAL(aboutToRemoveProject(ProjectExplorer::Project*)),
+ this, SLOT(invalidateProject(ProjectExplorer::Project*)));
+ connect(d->m_session, SIGNAL(projectRemoved(ProjectExplorer::Project*)),
this, SIGNAL(fileListChanged()));
connect(d->m_session, SIGNAL(projectAdded(ProjectExplorer::Project*)),
this, SLOT(projectAdded(ProjectExplorer::Project*)));
connect(d->m_session, SIGNAL(projectRemoved(ProjectExplorer::Project*)),
this, SLOT(projectRemoved(ProjectExplorer::Project*)));
- connect(d->m_session, SIGNAL(startupProjectChanged(ProjectExplorer::Project *)),
+ connect(d->m_session, SIGNAL(startupProjectChanged(ProjectExplorer::Project*)),
this, SLOT(startupProjectChanged()));
connect(d->m_session, SIGNAL(dependencyChanged(ProjectExplorer::Project*,ProjectExplorer::Project*)),
this, SLOT(updateActions()));
@@ -377,8 +377,8 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
addAutoReleasedObject(new VcsAnnotateTaskHandler);
d->m_buildManager = new BuildManager(this);
- connect(d->m_buildManager, SIGNAL(buildStateChanged(ProjectExplorer::Project *)),
- this, SLOT(buildStateChanged(ProjectExplorer::Project *)));
+ connect(d->m_buildManager, SIGNAL(buildStateChanged(ProjectExplorer::Project*)),
+ this, SLOT(buildStateChanged(ProjectExplorer::Project*)));
connect(d->m_buildManager, SIGNAL(buildQueueFinished(bool)),
this, SLOT(buildQueueFinished(bool)));
@@ -386,7 +386,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
d->m_outputPane = new AppOutputPane;
addAutoReleasedObject(d->m_outputPane);
- connect(d->m_session, SIGNAL(projectRemoved(ProjectExplorer::Project *)),
+ connect(d->m_session, SIGNAL(projectRemoved(ProjectExplorer::Project*)),
d->m_outputPane, SLOT(projectRemoved()));
connect(d->m_outputPane, SIGNAL(runControlStarted(ProjectExplorer::RunControl*)),
@@ -517,7 +517,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
d->m_openWithMenu = openWith->menu();
d->m_openWithMenu->setTitle(tr("Open With"));
- connect(d->m_openWithMenu, SIGNAL(triggered(QAction *)),
+ connect(d->m_openWithMenu, SIGNAL(triggered(QAction*)),
Core::DocumentManager::instance(), SLOT(slotExecuteOpenWithMenuAction(QAction*)));
//
@@ -1468,8 +1468,8 @@ void ProjectExplorerPlugin::restoreSession()
// update welcome page
connect(Core::ModeManager::instance(),
- SIGNAL(currentModeChanged(Core::IMode*, Core::IMode*)),
- SLOT(currentModeChanged(Core::IMode*, Core::IMode*)));
+ SIGNAL(currentModeChanged(Core::IMode*,Core::IMode*)),
+ SLOT(currentModeChanged(Core::IMode*,Core::IMode*)));
connect(d->m_welcomePage, SIGNAL(requestSession(QString)), this, SLOT(loadSession(QString)));
connect(d->m_welcomePage, SIGNAL(requestProject(QString)), this, SLOT(openProjectWelcomePage(QString)));
@@ -2831,7 +2831,7 @@ void ProjectExplorerPlugin::updateSessionMenu()
{
d->m_sessionMenu->clear();
QActionGroup *ag = new QActionGroup(d->m_sessionMenu);
- connect(ag, SIGNAL(triggered(QAction *)), this, SLOT(setSession(QAction *)));
+ connect(ag, SIGNAL(triggered(QAction*)), this, SLOT(setSession(QAction*)));
const QString &activeSession = d->m_session->activeSession();
foreach (const QString &session, d->m_session->sessions()) {
QAction *act = ag->addAction(session);