diff -r bf355fd6563e -r 9f8dc346ac6e algobox.cc --- a/algobox.cc Thu Jan 05 12:30:09 2006 +0000 +++ b/algobox.cc Thu Jan 05 16:54:34 2006 +0000 @@ -59,9 +59,9 @@ emit_tab_change(); } -void AlgoBox::update_maplist( void * ms) +void AlgoBox::update_maplist(MapStorage * ms) { - mapstorage=(MapStorage *)ms; + mapstorage=ms; std::vector nml; std::vector eml; if(mapstorage!=NULL) @@ -69,7 +69,7 @@ mapstorage->signal_node_map_ch().connect(sigc::mem_fun(*this, &AlgoBox::nodemaplist_changed)); mapstorage->signal_edge_map_ch().connect(sigc::mem_fun(*this, &AlgoBox::edgemaplist_changed)); nml=mapstorage->getNodeMapList(); - eml=mapstorage->getNodeMapList(); + eml=mapstorage->getEdgeMapList(); } for(int i=0;i<(int)nodemapcbts.size();i++) {