diff --git a/src/plugins/cppeditor/cppeditor.cpp b/src/plugins/cppeditor/cppeditor.cpp index 03435f493aa..74238c2d6dd 100644 --- a/src/plugins/cppeditor/cppeditor.cpp +++ b/src/plugins/cppeditor/cppeditor.cpp @@ -531,8 +531,8 @@ CPPEditorWidget::CPPEditorWidget(QWidget *parent) this, SLOT(onDocumentUpdated())); connect(editorSupport, SIGNAL(semanticInfoUpdated(CppTools::SemanticInfo)), this, SLOT(updateSemanticInfo(CppTools::SemanticInfo))); - connect(editorSupport, SIGNAL(highlighterStarted(QFuture *, unsigned)), - this, SLOT(highlighterStarted(QFuture *, unsigned))); + connect(editorSupport, SIGNAL(highlighterStarted(QFuture*,uint)), + this, SLOT(highlighterStarted(QFuture*,uint))); m_completionSupport = m_modelManager->completionSupport(editor()); } diff --git a/src/plugins/cppeditor/cppquickfixes.cpp b/src/plugins/cppeditor/cppquickfixes.cpp index 5d67df6037b..75c387ece47 100644 --- a/src/plugins/cppeditor/cppquickfixes.cpp +++ b/src/plugins/cppeditor/cppquickfixes.cpp @@ -4854,8 +4854,8 @@ void InsertVirtualMethodsDialog::initGui() globalVerticalLayout->addWidget(m_buttons, 0); setLayout(globalVerticalLayout); - connect(classFunctionModel, SIGNAL(itemChanged(QStandardItem *)), - this, SLOT(updateCheckBoxes(QStandardItem *))); + connect(classFunctionModel, SIGNAL(itemChanged(QStandardItem*)), + this, SLOT(updateCheckBoxes(QStandardItem*))); connect(m_hideReimplementedFunctions, SIGNAL(toggled(bool)), this, SLOT(setHideReimplementedFunctions(bool))); } diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index 831bf34cfcb..235696eda64 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -1649,8 +1649,8 @@ void FakeVimPluginPrivate::editorOpened(IEditor *editor) SLOT(foldAll(bool))); connect(handler, SIGNAL(fold(int,bool)), SLOT(fold(int,bool))); - connect(handler, SIGNAL(foldGoTo(int, bool)), - SLOT(foldGoTo(int, bool))); + connect(handler, SIGNAL(foldGoTo(int,bool)), + SLOT(foldGoTo(int,bool))); connect(handler, SIGNAL(jumpToGlobalMark(QChar,bool,QString)), SLOT(jumpToGlobalMark(QChar,bool,QString))); diff --git a/src/plugins/qmljstools/qmlconsolepane.cpp b/src/plugins/qmljstools/qmlconsolepane.cpp index 2a283730559..851a4849e8f 100644 --- a/src/plugins/qmljstools/qmlconsolepane.cpp +++ b/src/plugins/qmljstools/qmlconsolepane.cpp @@ -71,7 +71,7 @@ QmlConsolePane::QmlConsolePane(QObject *parent) m_proxyModel = new QmlConsoleProxyModel(this); m_proxyModel->setSourceModel(QmlConsoleModel::qmlConsoleItemModel()); connect(QmlConsoleModel::qmlConsoleItemModel(), - SIGNAL(selectEditableRow(QModelIndex, QItemSelectionModel::SelectionFlags)), + SIGNAL(selectEditableRow(QModelIndex,QItemSelectionModel::SelectionFlags)), m_proxyModel, SLOT(selectEditableRow(QModelIndex,QItemSelectionModel::SelectionFlags))); diff --git a/src/plugins/qnx/bardescriptoreditorassetswidget.cpp b/src/plugins/qnx/bardescriptoreditorassetswidget.cpp index 7dfaae789d2..a6e6cf88d6a 100644 --- a/src/plugins/qnx/bardescriptoreditorassetswidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorassetswidget.cpp @@ -160,15 +160,15 @@ void BarDescriptorEditorAssetsWidget::updateEntryCheckState(QStandardItem *item) void BarDescriptorEditorAssetsWidget::connectAssetsModel() { connect(m_assetsModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(changed())); - connect(m_assetsModel, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SIGNAL(changed())); - connect(m_assetsModel, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, SIGNAL(changed())); + connect(m_assetsModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SIGNAL(changed())); + connect(m_assetsModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SIGNAL(changed())); } void BarDescriptorEditorAssetsWidget::disconnectAssetsModel() { disconnect(m_assetsModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(changed())); - disconnect(m_assetsModel, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SIGNAL(changed())); - disconnect(m_assetsModel, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, SIGNAL(changed())); + disconnect(m_assetsModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SIGNAL(changed())); + disconnect(m_assetsModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SIGNAL(changed())); } void BarDescriptorEditorAssetsWidget::addAssetInternal(const BarDescriptorAsset &asset) diff --git a/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp b/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp index 01cf97ee010..917199fc436 100644 --- a/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp @@ -76,7 +76,7 @@ BarDescriptorEditorEntryPointWidget::BarDescriptorEditorEntryPointWidget(QWidget connect(m_ui->addSplashScreen, SIGNAL(clicked()), this, SLOT(browseForSplashScreen())); connect(m_ui->removeSplashScreen, SIGNAL(clicked()), this, SLOT(removeSelectedSplashScreen())); connect(m_splashScreenModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(changed())); - connect(m_ui->splashScreensView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(handleSplashScreenSelectionChanged(QItemSelection, QItemSelection))); + connect(m_ui->splashScreensView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(handleSplashScreenSelectionChanged(QItemSelection,QItemSelection))); } BarDescriptorEditorEntryPointWidget::~BarDescriptorEditorEntryPointWidget() diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp b/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp index 46825f5286d..9ef090bd723 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp +++ b/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp @@ -72,8 +72,8 @@ BlackBerryDeviceConfigurationWidget::BlackBerryDeviceConfigurationWidget(const I connect(ui->debugToken, SIGNAL(browsingFinished()), this, SLOT(debugTokenEditingFinished())); connect(uploader, SIGNAL(finished(int)), this, SLOT(uploadFinished(int))); - connect(BlackBerryDeviceConnectionManager::instance(), SIGNAL(connectionOutput(Core::Id, QString)), - this, SLOT(appendConnectionLog(Core::Id, QString))); + connect(BlackBerryDeviceConnectionManager::instance(), SIGNAL(connectionOutput(Core::Id,QString)), + this, SLOT(appendConnectionLog(Core::Id,QString))); connect(BlackBerryDeviceConnectionManager::instance(), SIGNAL(deviceAboutToConnect(Core::Id)), this, SLOT(clearConnectionLog(Core::Id))); diff --git a/src/plugins/qt4projectmanager/qt4buildconfiguration.cpp b/src/plugins/qt4projectmanager/qt4buildconfiguration.cpp index b11e1ab5c4f..8c728f87239 100644 --- a/src/plugins/qt4projectmanager/qt4buildconfiguration.cpp +++ b/src/plugins/qt4projectmanager/qt4buildconfiguration.cpp @@ -127,8 +127,8 @@ bool Qt4BuildConfiguration::fromMap(const QVariantMap &map) m_lastKitState = LastKitState(target()->kit()); - connect(ProjectExplorer::ToolChainManager::instance(), SIGNAL(toolChainUpdated(ProjectExplorer::ToolChain *)), - this, SLOT(toolChainUpdated(ProjectExplorer::ToolChain *))); + connect(ProjectExplorer::ToolChainManager::instance(), SIGNAL(toolChainUpdated(ProjectExplorer::ToolChain*)), + this, SLOT(toolChainUpdated(ProjectExplorer::ToolChain*))); connect(QtSupport::QtVersionManager::instance(), SIGNAL(qtVersionsChanged(QList,QList,QList)), this, SLOT(qtVersionsChanged(QList,QList,QList))); return true;