QxtPointerList: fix name resolution for removeAll

This commit is contained in:
Adam Higerd 2014-02-16 00:03:49 -08:00
parent a6e35c34dd
commit 3e7424f842
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ protected:
///reimplement to access objects before they are removed
virtual void removeThisObject(QObject * obj)
{
removeAll(reinterpret_cast<T*>(obj));
this->removeAll(reinterpret_cast<T*>(obj));
}
///reimplement to access objects before they are added
virtual void addThisObject(QObject * obj)