diff options
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakeproject.cpp | 2 | ||||
-rw-r--r-- | src/plugins/ios/iostoolhandler.cpp | 2 | ||||
-rw-r--r-- | src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp index bb07c99f23d..b8c5e3ffcda 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp @@ -304,7 +304,7 @@ void CMakeProject::updateProjectData(CMakeBuildConfiguration *bc) emit fileListChanged(); - emit bc->emitBuildTypeChanged(); + bc->emitBuildTypeChanged(); } void CMakeProject::updateQmlJSCodeModel() diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index 59e02261906..974792e851d 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -488,7 +488,7 @@ void IosDeviceToolHandlerPrivate::processXml() status = Ios::IosToolHandler::Success; else if (statusStr.compare(QLatin1String("failure"), Qt::CaseInsensitive) == 0) status = Ios::IosToolHandler::Failure; - emit didTransferApp(m_bundlePath, m_deviceId, status); + didTransferApp(m_bundlePath, m_deviceId, status); } else if (elName == QLatin1String("device_info") || elName == QLatin1String("deviceinfo")) { stack.append(ParserState(ParserState::DeviceInfo)); } else if (elName == QLatin1String("inferior_pid")) { diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp index afc7c497152..a79006423c8 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp @@ -83,7 +83,7 @@ void QmlAnchorBindingProxy::setup(const QmlItemNode &fxItemNode) emit itemNodeChanged(); emit parentChanged(); - emit emitAnchorSignals(); + emitAnchorSignals(); if (m_qmlItemNode.hasNodeParent()) { emit topTargetChanged(); |