From: Alf Gaida Date: Mon, 6 Jun 2016 21:37:17 +0000 (+0200) Subject: Fix two typos (#200) X-Git-Tag: 0.12.5~120 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=7ce6901e364a16e578dc1c7f76a024b6b22797b9 Fix two typos (#200) (cherry picked from commit ef3a1eebb101c108dea196e21e29cc4f6f00459a) --- diff --git a/src/common/compressor.cpp b/src/common/compressor.cpp index fd4fb3c9..e804d4d3 100644 --- a/src/common/compressor.cpp +++ b/src/common/compressor.cpp @@ -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; } diff --git a/src/common/ignorelistmanager.cpp b/src/common/ignorelistmanager.cpp index cdd15ebe..8e2344ad 100644 --- a/src/common/ignorelistmanager.cpp +++ b/src/common/ignorelistmanager.cpp @@ -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; }