summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemLine.C
diff options
context:
space:
mode:
authorjoye <joye>2014-04-16 18:15:51 (GMT)
committerjoye <joye>2014-04-16 18:15:51 (GMT)
commitf5a66d3ebfbfcea351ac878c88ebf3a29744749c (patch)
treed2e16f22951b551eb0f093959a328a0eb5edc914 /src/bltGrElemLine.C
parentf82e5d50b647272c27012b332070eb81fe4f4215 (diff)
downloadblt-f5a66d3ebfbfcea351ac878c88ebf3a29744749c.zip
blt-f5a66d3ebfbfcea351ac878c88ebf3a29744749c.tar.gz
blt-f5a66d3ebfbfcea351ac878c88ebf3a29744749c.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r--src/bltGrElemLine.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C
index a210379..5aed37d 100644
--- a/src/bltGrElemLine.C
+++ b/src/bltGrElemLine.C
@@ -1038,7 +1038,7 @@ int LineElement::ScaleSymbol(int normalSize)
// Don't let the size of symbols go unbounded. Both X and Win32 drawing
// routines assume coordinates to be a signed short int.
- int maxSize = (int)MIN(graphPtr_->hRange, graphPtr_->vRange);
+ int maxSize = (int)MIN(graphPtr_->hRange_, graphPtr_->vRange_);
if (newSize > maxSize)
newSize = maxSize;