e2b5e6f921
aMule 2.3.1 for trunk and the latest Attitude Adjustment Signed-off-by: Massimo Tumminia <matumminia@tiscali.it> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40583 3c298f89-4303-0410-b956-a3cf2f4a3e73
20 lines
583 B
Diff
20 lines
583 B
Diff
--- a/src/ObservableQueue.h
|
|
+++ b/src/ObservableQueue.h
|
|
@@ -331,14 +331,14 @@ CObservableQueue<ValueType>::~CObservabl
|
|
template <typename ValueType>
|
|
void CObservableQueue<ValueType>::ObserverAdded( ObserverType* o )
|
|
{
|
|
- NotifyObservers( EventType( EventType::STARTING ), o );
|
|
+ this->NotifyObservers( EventType( EventType::STARTING ), o );
|
|
}
|
|
|
|
|
|
template <typename ValueType>
|
|
void CObservableQueue<ValueType>::ObserverRemoved( ObserverType* o )
|
|
{
|
|
- NotifyObservers( EventType( EventType::STOPPING ), o );
|
|
+ this->NotifyObservers( EventType( EventType::STOPPING ), o );
|
|
}
|
|
|
|
|