diff options
author | Josh Stone <jistone@redhat.com> | 2009-08-04 21:09:18 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-08-04 21:09:44 -0700 |
commit | 034ce93ff77c29dbbc51783c1983092ec3421fe7 (patch) | |
tree | cfbb757b92cdbeb79f8643d2bdf835e3d08c57c9 /grapher/Graph.cxx | |
parent | b6a45931c81fa7c1c0acb7c69146ee67cb19ca9b (diff) | |
parent | 1e9b189fbd2cdc0e978de086299ba3a501608005 (diff) | |
download | systemtap-steved-034ce93ff77c29dbbc51783c1983092ec3421fe7.tar.gz systemtap-steved-034ce93ff77c29dbbc51783c1983092ec3421fe7.tar.xz systemtap-steved-034ce93ff77c29dbbc51783c1983092ec3421fe7.zip |
Merge branch 'release'
Diffstat (limited to 'grapher/Graph.cxx')
-rw-r--r-- | grapher/Graph.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/Graph.cxx b/grapher/Graph.cxx index d36f284f..ec5e4035 100644 --- a/grapher/Graph.cxx +++ b/grapher/Graph.cxx @@ -10,9 +10,9 @@ namespace systemtap using namespace std::tr1; Graph::Graph() - : _left(0.0), _right(1.0), _top(5.0), _bottom(0.0), _lineWidth(2), - _autoScaling(true), _autoScrolling(true), _zoomFactor(1.0), - _playButton(new CairoPlayButton) + : _lineWidth(2), _autoScaling(true), _autoScrolling(true), + _zoomFactor(1.0), _playButton(new CairoPlayButton), + _left(0.0), _right(1.0), _top(5.0), _bottom(0.0) { } |