Fix two typos (#200)
authorAlf Gaida <agaida@siduction.org>
Mon, 6 Jun 2016 21:37:17 +0000 (23:37 +0200)
committerDaniel Albers <daniel@lbe.rs>
Mon, 6 Jun 2016 21:37:17 +0000 (23:37 +0200)
src/common/compressor.cpp
src/common/ignorelistmanager.cpp

index fd4fb3c..e804d4d 100644 (file)
@@ -97,7 +97,7 @@ bool Compressor::initStreams()
     _deflater = new z_stream;
     memset(_deflater, 0, sizeof(z_stream));
     if (Z_OK != deflateInit(_deflater, zlevel)) {
-        qWarning() << "Could not intialize the deflate stream!";
+        qWarning() << "Could not initialize the deflate stream!";
         return false;
     }
 
index cdd15eb..8e2344a 100644 (file)
@@ -91,7 +91,7 @@ void IgnoreListManager::initSetIgnoreList(const QVariantMap &ignoreList)
     int count = ignoreRule.count();
     if (count != scopeRule.count() || count != isRegEx.count() ||
         count != scope.count() || count != strictness.count() || count != ignoreType.count() || count != isActive.count()) {
-        qWarning() << "Corrupted IgnoreList settings! (Count missmatch)";
+        qWarning() << "Corrupted IgnoreList settings! (Count mismatch)";
         return;
     }