diff options
author | joye <joye> | 2014-04-17 17:42:03 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-17 17:42:03 (GMT) |
commit | 1610af22d5f99d66237256a446fbb36ea54c7364 (patch) | |
tree | 7adfa0aaa2b4b8bd7b12353c351b924fd2700229 /src/bltGraph.C | |
parent | 9caebde9f70de2451a69021472ab824182e88fa1 (diff) | |
download | blt-1610af22d5f99d66237256a446fbb36ea54c7364.zip blt-1610af22d5f99d66237256a446fbb36ea54c7364.tar.gz blt-1610af22d5f99d66237256a446fbb36ea54c7364.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGraph.C')
-rw-r--r-- | src/bltGraph.C | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/bltGraph.C b/src/bltGraph.C index c768dbc..94b3869 100644 --- a/src/bltGraph.C +++ b/src/bltGraph.C @@ -794,22 +794,16 @@ void Graph::reconfigure() configureMarkers(); } -// Support - // Crosshairs void Graph::enableCrosshairs() { - CrosshairsOptions* ops = (CrosshairsOptions*)crosshairs_->ops_; - if (!ops->hide) - crosshairs_->on(); + crosshairs_->enable(); } void Graph::disableCrosshairs() { - CrosshairsOptions* ops = (CrosshairsOptions*)crosshairs_->ops_; - if (!ops->hide) - crosshairs_->off(); + crosshairs_->disable(); } // Pens |