forked from qt-creator/qt-creator
Fix: Emit keyword being used with non-signal
-Wclazy-incorrect-emit Change-Id: I02e54b1170fdd812f3bfee97e9b7ecd6b0560270 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -304,7 +304,7 @@ void CMakeProject::updateProjectData(CMakeBuildConfiguration *bc)
|
|||||||
|
|
||||||
emit fileListChanged();
|
emit fileListChanged();
|
||||||
|
|
||||||
emit bc->emitBuildTypeChanged();
|
bc->emitBuildTypeChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMakeProject::updateQmlJSCodeModel()
|
void CMakeProject::updateQmlJSCodeModel()
|
||||||
|
|||||||
@@ -488,7 +488,7 @@ void IosDeviceToolHandlerPrivate::processXml()
|
|||||||
status = Ios::IosToolHandler::Success;
|
status = Ios::IosToolHandler::Success;
|
||||||
else if (statusStr.compare(QLatin1String("failure"), Qt::CaseInsensitive) == 0)
|
else if (statusStr.compare(QLatin1String("failure"), Qt::CaseInsensitive) == 0)
|
||||||
status = Ios::IosToolHandler::Failure;
|
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")) {
|
} else if (elName == QLatin1String("device_info") || elName == QLatin1String("deviceinfo")) {
|
||||||
stack.append(ParserState(ParserState::DeviceInfo));
|
stack.append(ParserState(ParserState::DeviceInfo));
|
||||||
} else if (elName == QLatin1String("inferior_pid")) {
|
} else if (elName == QLatin1String("inferior_pid")) {
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ void QmlAnchorBindingProxy::setup(const QmlItemNode &fxItemNode)
|
|||||||
emit itemNodeChanged();
|
emit itemNodeChanged();
|
||||||
emit parentChanged();
|
emit parentChanged();
|
||||||
|
|
||||||
emit emitAnchorSignals();
|
emitAnchorSignals();
|
||||||
|
|
||||||
if (m_qmlItemNode.hasNodeParent()) {
|
if (m_qmlItemNode.hasNodeParent()) {
|
||||||
emit topTargetChanged();
|
emit topTargetChanged();
|
||||||
|
|||||||
Reference in New Issue
Block a user