1.1 --- a/broken_edge.cc Sun Aug 07 22:14:59 2005 +0000
1.2 +++ b/broken_edge.cc Tue Aug 16 20:07:14 2005 +0000
1.3 @@ -1,5 +1,5 @@
1.4 #include "broken_edge.h"
1.5 -#include <math.h>
1.6 +#include <cmath>
1.7
1.8 BrokenEdge::BrokenEdge(Gnome::Canvas::Group & g, Gnome::Canvas::Points p, GraphDisplayerCanvas & gc) : Line(g), gdc(gc), isbutton(false)
1.9 {
2.1 --- a/graph_displayer_canvas-edge.cc Sun Aug 07 22:14:59 2005 +0000
2.2 +++ b/graph_displayer_canvas-edge.cc Tue Aug 16 20:07:14 2005 +0000
2.3 @@ -1,6 +1,6 @@
2.4 #include "graph_displayer_canvas.h"
2.5 #include "broken_edge.h"
2.6 -#include <math.h>
2.7 +#include <cmath>
2.8
2.9
2.10 int GraphDisplayerCanvas::changeEdgeWidth (std::string mapname, Graph::Edge edge)
3.1 --- a/graph_displayer_canvas-event.cc Sun Aug 07 22:14:59 2005 +0000
3.2 +++ b/graph_displayer_canvas-event.cc Tue Aug 16 20:07:14 2005 +0000
3.3 @@ -1,6 +1,6 @@
3.4 #include "graph_displayer_canvas.h"
3.5 #include "broken_edge.h"
3.6 -#include <math.h>
3.7 +#include <cmath>
3.8
3.9
3.10 bool GraphDisplayerCanvas::on_expose_event(GdkEventExpose *event)
4.1 --- a/graph_displayer_canvas-node.cc Sun Aug 07 22:14:59 2005 +0000
4.2 +++ b/graph_displayer_canvas-node.cc Tue Aug 16 20:07:14 2005 +0000
4.3 @@ -1,6 +1,6 @@
4.4 #include "graph_displayer_canvas.h"
4.5 #include "broken_edge.h"
4.6 -#include <math.h>
4.7 +#include <cmath>
4.8
4.9
4.10 int GraphDisplayerCanvas::changeNodeRadius (std::string mapname, Graph::Node node)
5.1 --- a/graph_displayer_canvas-zoom.cc Sun Aug 07 22:14:59 2005 +0000
5.2 +++ b/graph_displayer_canvas-zoom.cc Tue Aug 16 20:07:14 2005 +0000
5.3 @@ -1,6 +1,6 @@
5.4 #include "graph_displayer_canvas.h"
5.5 #include "broken_edge.h"
5.6 -#include <math.h>
5.7 +#include <cmath>
5.8
5.9 void GraphDisplayerCanvas::zoomIn()
5.10 {
6.1 --- a/graph_displayer_canvas.cc Sun Aug 07 22:14:59 2005 +0000
6.2 +++ b/graph_displayer_canvas.cc Tue Aug 16 20:07:14 2005 +0000
6.3 @@ -1,6 +1,6 @@
6.4 #include "graph_displayer_canvas.h"
6.5 #include "broken_edge.h"
6.6 -#include <math.h>
6.7 +#include <cmath>
6.8
6.9 GraphDisplayerCanvas::GraphDisplayerCanvas(MapStorage & ms, MapWin & mw, Gtk::Window * mainwin) :
6.10 nodesmap(ms.graph), edgesmap(ms.graph), edgetextmap(ms.graph),