SVN commit 1271272 by rkcosta: Fix build with clang. The call to QSet::contains() failed due to [1]. CCMAIL: mpyne@kde.org [1] http://clang.llvm.org/compatibility.html#dep_lookup_bases M +1 -1 stringhash.h --- trunk/KDE/kdemultimedia/juk/stringhash.h #1271271:1271272 @@ -33,7 +33,7 @@ */ inline bool insert(const T &value) { - if(contains(value)) + if(this->contains(value)) return true; QSet::insert(value); return false;