From 8d4876967e24cba1327f4e806fe6bcf8350f888c Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Wed, 13 Jul 2016 03:15:26 +0200 Subject: [PATCH] refs #708 fix --- src/blackmisc/logcategorylist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackmisc/logcategorylist.cpp b/src/blackmisc/logcategorylist.cpp index a88d4c674..e5353e2b8 100644 --- a/src/blackmisc/logcategorylist.cpp +++ b/src/blackmisc/logcategorylist.cpp @@ -53,7 +53,7 @@ namespace BlackMisc CLogCategoryList CLogCategoryList::fromQString(const QString &string) { - return fromQStringList(string.split("|")); + return fromQStringList(string.split("|", QString::SkipEmptyParts)); } bool CLogCategoryList::anyStartWith(const QString &prefix) const