summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemLine.C
diff options
context:
space:
mode:
authorjoye <joye>2014-05-02 18:45:58 (GMT)
committerjoye <joye>2014-05-02 18:45:58 (GMT)
commit8180f118650ad138177ffae5ffed5d2156fb4075 (patch)
treefacb1d05c5ce756d53f5841aed52a653043b31d5 /src/bltGrElemLine.C
parent1e98c4811029b80fbb693a99ad1439f9603cc2fd (diff)
downloadblt-8180f118650ad138177ffae5ffed5d2156fb4075.zip
blt-8180f118650ad138177ffae5ffed5d2156fb4075.tar.gz
blt-8180f118650ad138177ffae5ffed5d2156fb4075.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r--src/bltGrElemLine.C8
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;