diff -r 545926902c13 -r 805c5a2a36dd lemon/bits/map_extender.h --- a/lemon/bits/map_extender.h Thu Mar 01 16:50:12 2007 +0000 +++ b/lemon/bits/map_extender.h Thu Mar 01 17:14:24 2007 +0000 @@ -83,14 +83,14 @@ MapIt(Invalid i) : Parent(i) { } explicit MapIt(Map& _map) : map(_map) { - map.getNotifier()->first(*this); + map.notifier()->first(*this); } MapIt(const Map& _map, const Item& item) : Parent(item), map(_map) {} MapIt& operator++() { - map.getNotifier()->next(*this); + map.notifier()->next(*this); return *this; } @@ -123,14 +123,14 @@ ConstMapIt(Invalid i) : Parent(i) { } explicit ConstMapIt(Map& _map) : map(_map) { - map.getNotifier()->first(*this); + map.notifier()->first(*this); } ConstMapIt(const Map& _map, const Item& item) : Parent(item), map(_map) {} ConstMapIt& operator++() { - map.getNotifier()->next(*this); + map.notifier()->next(*this); return *this; } @@ -152,14 +152,14 @@ ItemIt(Invalid i) : Parent(i) { } explicit ItemIt(Map& _map) : map(_map) { - map.getNotifier()->first(*this); + map.notifier()->first(*this); } ItemIt(const Map& _map, const Item& item) : Parent(item), map(_map) {} ItemIt& operator++() { - map.getNotifier()->next(*this); + map.notifier()->next(*this); return *this; }