diff options
Diffstat (limited to 'tests/auto/bic/qbic.cpp')
-rw-r--r-- | tests/auto/bic/qbic.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/bic/qbic.cpp b/tests/auto/bic/qbic.cpp index d2f289b..e115453 100644 --- a/tests/auto/bic/qbic.cpp +++ b/tests/auto/bic/qbic.cpp @@ -57,6 +57,10 @@ void QBic::removeBlacklistedClass(const QString &wildcard) bool QBic::isBlacklisted(const QString &className) const { + // all templates are blacklisted + if (className.contains('<')) + return true; + for (int i = 0; i < blackList.count(); ++i) if (blackList.at(i).exactMatch(className)) return true; |