forked from qt-creator/qt-creator
CMake: Fix typo in symbol names
I can't spell occurred:-/ Similar typos in 3rd party code (sqlite) has been left in place. Change-Id: I7cfa9911fc434d42ce3df8e9c7ccb83dc00401e8 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -355,7 +355,7 @@ void CMakeBuildConfiguration::setError(const QString &message)
|
||||
qCDebug(cmakeBuildConfigurationLog) << "Emitting enabledChanged signal";
|
||||
emit enabledChanged();
|
||||
}
|
||||
emit errorOccured(m_error);
|
||||
emit errorOccurred(m_error);
|
||||
}
|
||||
|
||||
void CMakeBuildConfiguration::setWarning(const QString &message)
|
||||
@@ -363,7 +363,7 @@ void CMakeBuildConfiguration::setWarning(const QString &message)
|
||||
if (m_warning == message)
|
||||
return;
|
||||
m_warning = message;
|
||||
emit warningOccured(m_warning);
|
||||
emit warningOccurred(m_warning);
|
||||
}
|
||||
|
||||
QString CMakeBuildConfiguration::error() const
|
||||
|
||||
Reference in New Issue
Block a user