aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2017-06-06 17:30:21 +0300
committerJake Petroules <jake.petroules@qt.io>2017-06-06 16:40:25 +0000
commit3285bc1b02ebd1a737ec3660502f7aab2850548b (patch)
tree432886f0357fd641567a41c272a0658350f3d7f0
parent16c462ad952fe8d5a662857b7fee90528535282b (diff)
Fix a couple of typos
Change-Id: Ie9fd8d94261c1f6e5314f490519a613b2284228a Reviewed-by: Jake Petroules <jake.petroules@qt.io>
-rw-r--r--src/app/qbs-create-project/createproject.cpp2
-rw-r--r--src/app/qbs/commandlinefrontend.cpp2
-rw-r--r--src/lib/corelib/buildgraph/buildgraphloader.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/app/qbs-create-project/createproject.cpp b/src/app/qbs-create-project/createproject.cpp
index 9e36a2bdb..8f07b95b3 100644
--- a/src/app/qbs-create-project/createproject.cpp
+++ b/src/app/qbs-create-project/createproject.cpp
@@ -212,7 +212,7 @@ void ProjectCreator::getFlagsFromFileContents(const ProjectCreator::Project &pro
for (const QString &fileName : qAsConst(project.fileNames)) {
QFile f (project.dirPath + QLatin1Char('/') + fileName);
if (!f.open(QIODevice::ReadOnly)) {
- qDebug() << "Ingoring failure to read" << f.fileName();
+ qDebug() << "Ignoring failure to read" << f.fileName();
continue;
}
while (!f.atEnd()) {
diff --git a/src/app/qbs/commandlinefrontend.cpp b/src/app/qbs/commandlinefrontend.cpp
index 7c3905d50..8cc374a35 100644
--- a/src/app/qbs/commandlinefrontend.cpp
+++ b/src/app/qbs/commandlinefrontend.cpp
@@ -188,7 +188,7 @@ void CommandLineFrontend::start()
* Progress reporting on the terminal gets a bit tricky when resolving several projects
* concurrently, since we cannot show multiple progress bars at the same time. Instead,
* we just set the total effort to the number of projects and increase the progress
- * every time one of them finishes, ingoring the progress reports from the jobs themselves.
+ * every time one of them finishes, ignoring the progress reports from the jobs themselves.
* (Yes, that does mean it will take disproportionately long for the first progress
* notification to arrive.)
*/
diff --git a/src/lib/corelib/buildgraph/buildgraphloader.cpp b/src/lib/corelib/buildgraph/buildgraphloader.cpp
index 13da1b31d..796565fe0 100644
--- a/src/lib/corelib/buildgraph/buildgraphloader.cpp
+++ b/src/lib/corelib/buildgraph/buildgraphloader.cpp
@@ -127,7 +127,7 @@ BuildGraphLoadResult BuildGraphLoader::load(const TopLevelProjectPtr &existingPr
trackProjectChanges();
if (m_parameters.logElapsedTime()) {
m_logger.qbsLog(LoggerInfo, true) << "\t"
- << Tr::tr("Wilcard expansion took %1.")
+ << Tr::tr("Wildcard expansion took %1.")
.arg(elapsedTimeString(m_wildcardExpansionEffort));
m_logger.qbsLog(LoggerInfo, true) << "\t"
<< Tr::tr("Comparing property values took %1.")