changeset 23 | 89e065397ea6 |
parent 18 | 2f34d5167611 |
--- a/tests/auto/bic/qbic.cpp Fri May 14 16:40:13 2010 +0300 +++ b/tests/auto/bic/qbic.cpp Thu May 27 13:40:48 2010 +0300 @@ -57,6 +57,10 @@ 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;