diff options
author | joye <joye> | 2014-05-02 18:45:58 (GMT) |
---|---|---|
committer | joye <joye> | 2014-05-02 18:45:58 (GMT) |
commit | 8180f118650ad138177ffae5ffed5d2156fb4075 (patch) | |
tree | facb1d05c5ce756d53f5841aed52a653043b31d5 /src/bltGrElemLine.C | |
parent | 1e98c4811029b80fbb693a99ad1439f9603cc2fd (diff) | |
download | blt-8180f118650ad138177ffae5ffed5d2156fb4075.zip blt-8180f118650ad138177ffae5ffed5d2156fb4075.tar.gz blt-8180f118650ad138177ffae5ffed5d2156fb4075.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r-- | src/bltGrElemLine.C | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C index a519bd8..925c9ce 100644 --- a/src/bltGrElemLine.C +++ b/src/bltGrElemLine.C @@ -575,7 +575,7 @@ void LineElement::draw(Drawable drawable) { LineElementOptions* ops = (LineElementOptions*)ops_; - if (hide_) + if (ops->hide) return; // Fill area under the curve @@ -666,7 +666,7 @@ void LineElement::drawActive(Drawable drawable) { LineElementOptions* ops = (LineElementOptions*)ops_; - if (hide_ || !(flags & ACTIVE)) + if (ops->hide || !(flags & ACTIVE)) return; LinePen* penPtr = (LinePen*)ops->activePenPtr; @@ -735,7 +735,7 @@ void LineElement::print(Blt_Ps ps) { LineElementOptions* ops = (LineElementOptions*)ops_; - if (hide_) + if (ops->hide) return; Blt_Ps_Format(ps, "\n%% Element \"%s\"\n\n", name_); @@ -832,7 +832,7 @@ void LineElement::printActive(Blt_Ps ps) { LineElementOptions* ops = (LineElementOptions*)ops_; - if (hide_ || !(flags & ACTIVE)) + if (ops->hide || !(flags & ACTIVE)) return; LinePen* penPtr = (LinePen *)ops->activePenPtr; |