diff -r 545926902c13 -r 805c5a2a36dd lemon/graph_utils.h --- a/lemon/graph_utils.h Thu Mar 01 16:50:12 2007 +0000 +++ b/lemon/graph_utils.h Thu Mar 01 17:14:24 2007 +0000 @@ -1873,7 +1873,7 @@ /// Constructor for descriptor map. explicit DescriptorMap(const Graph& _graph) : Map(_graph) { Item it; - const typename Map::Notifier* notifier = Map::getNotifier(); + const typename Map::Notifier* notifier = Map::notifier(); for (notifier->first(it); it != INVALID; notifier->next(it)) { Map::set(it, invMap.size()); invMap.push_back(it); @@ -1935,7 +1935,7 @@ virtual void build() { Map::build(); Item it; - const typename Map::Notifier* notifier = Map::getNotifier(); + const typename Map::Notifier* notifier = Map::notifier(); for (notifier->first(it); it != INVALID; notifier->next(it)) { Map::set(it, invMap.size()); invMap.push_back(it); @@ -2292,7 +2292,7 @@ /// /// Constructor for creating in-degree map. explicit InDegMap(const Graph& _graph) : graph(_graph), deg(_graph) { - Parent::attach(graph.getNotifier(typename _Graph::Edge())); + Parent::attach(graph.notifier(typename _Graph::Edge())); for(typename _Graph::NodeIt it(graph); it != INVALID; ++it) { deg[it] = countInEdges(graph, it); @@ -2404,7 +2404,7 @@ /// /// Constructor for creating out-degree map. explicit OutDegMap(const Graph& _graph) : graph(_graph), deg(_graph) { - Parent::attach(graph.getNotifier(typename _Graph::Edge())); + Parent::attach(graph.notifier(typename _Graph::Edge())); for(typename _Graph::NodeIt it(graph); it != INVALID; ++it) { deg[it] = countOutEdges(graph, it);