diff -r afd1d8bfcccd -r 10ef59f6633c graph_displayer_canvas-edge.cc --- a/graph_displayer_canvas-edge.cc Wed Aug 30 15:55:18 2006 +0000 +++ b/graph_displayer_canvas-edge.cc Wed Sep 13 09:16:29 2006 +0000 @@ -24,7 +24,7 @@ { w=(int)(MIN_EDGE_WIDTH+(v-min)/(max-min)*(MAX_EDGE_WIDTH-MIN_EDGE_WIDTH)); } - edgesmap[i]->property_width_units().set_value(w); + edgesmap[i]->setLineWidth(w); } } else @@ -32,7 +32,7 @@ int w=(int)actual_map[edge]; if(w>=0) { - edgesmap[edge]->property_width_units().set_value(w); + edgesmap[edge]->setLineWidth(w); } } return 0; @@ -62,7 +62,7 @@ { w=(int)(MIN_EDGE_WIDTH+(v-min)/(max-min)*(MAX_EDGE_WIDTH-MIN_EDGE_WIDTH)); } - edgesmap[i]->property_width_units().set_value(w); + edgesmap[i]->setLineWidth(w); } } else @@ -70,7 +70,7 @@ int w=(int)(*actual_map)[edge]; if(w>=0) { - edgesmap[edge]->property_width_units().set_value(w); + edgesmap[edge]->setLineWidth(w); } } return 0; @@ -105,7 +105,7 @@ { color.set_rgb_p (0, 100, 0); } - edgesmap[i]->property_fill_color_gdk().set_value(color); + edgesmap[i]->setFillColor(color); } } else @@ -123,7 +123,7 @@ color.set_rgb_p (0, 100, 0); } - edgesmap[edge]->property_fill_color_gdk().set_value(color); + edgesmap[edge]->setFillColor(color); } return 0; }; @@ -156,7 +156,7 @@ { color.set_rgb_p (0, 100, 0); } - edgesmap[i]->property_fill_color_gdk().set_value(color); + edgesmap[i]->setFillColor(color); } } else @@ -174,7 +174,7 @@ color.set_rgb_p (0, 100, 0); } - edgesmap[edge]->property_fill_color_gdk().set_value(color); + edgesmap[edge]->setFillColor(color); } return 0; };