patch 2526407

This commit is contained in:
Guenter Obiltschnig
2009-06-17 09:12:38 +00:00
parent 23ea66bb12
commit 265d639aa1

View File

@@ -1,7 +1,7 @@
// //
// DefaultStrategy.h // DefaultStrategy.h
// //
// $Id: //poco/svn/Foundation/include/Poco/DefaultStrategy.h#2 $ // $Id: //poco/Main/Foundation/include/Poco/DefaultStrategy.h#5 $
// //
// Library: Foundation // Library: Foundation
// Package: Events // Package: Events
@@ -79,7 +79,7 @@ public:
{ {
std::vector<Iterator> delMe; std::vector<Iterator> delMe;
for (Iterator it = _observers.begin(); it != _observers.end(); it++) for (Iterator it = _observers.begin(); it != _observers.end(); ++it)
{ {
if (!(*it)->notify(sender, arguments)) if (!(*it)->notify(sender, arguments))
{ {