From 3e7424f842d4673a6823e926c7a10f2b458e4292 Mon Sep 17 00:00:00 2001 From: Adam Higerd Date: Sun, 16 Feb 2014 00:03:49 -0800 Subject: [PATCH] QxtPointerList: fix name resolution for removeAll --- src/core/qxtpointerlist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/qxtpointerlist.h b/src/core/qxtpointerlist.h index a338418d..d775708f 100644 --- a/src/core/qxtpointerlist.h +++ b/src/core/qxtpointerlist.h @@ -134,7 +134,7 @@ protected: ///reimplement to access objects before they are removed virtual void removeThisObject(QObject * obj) { - removeAll(reinterpret_cast(obj)); + this->removeAll(reinterpret_cast(obj)); } ///reimplement to access objects before they are added virtual void addThisObject(QObject * obj)