summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemLine.C
diff options
context:
space:
mode:
authorjoye <joye>2014-05-30 21:07:28 (GMT)
committerjoye <joye>2014-05-30 21:07:28 (GMT)
commit9c010915d7554efbab609e106ee67d37837111dd (patch)
treed612fe98f5428a75c2e492a470ebb862fec8ecb6 /src/bltGrElemLine.C
parent94a928c01819a3509868f5f8b3b1f7aef91d5e42 (diff)
downloadblt-9c010915d7554efbab609e106ee67d37837111dd.zip
blt-9c010915d7554efbab609e106ee67d37837111dd.tar.gz
blt-9c010915d7554efbab609e106ee67d37837111dd.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r--src/bltGrElemLine.C12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C
index 8490a7d..ba0bd68 100644
--- a/src/bltGrElemLine.C
+++ b/src/bltGrElemLine.C
@@ -569,12 +569,12 @@ void LineElement::draw(Drawable drawable)
LinePenOptions* penOps = (LinePenOptions*)penPtr->ops();
if ((stylePtr->xeb.length > 0) && (penOps->errorBarShow & SHOW_X))
- Blt_Draw2DSegments(graphPtr_->display_, drawable, penPtr->errorBarGC_,
- stylePtr->xeb.segments, stylePtr->xeb.length);
+ graphPtr_->drawSegments(drawable, penPtr->errorBarGC_,
+ stylePtr->xeb.segments, stylePtr->xeb.length);
if ((stylePtr->yeb.length > 0) && (penOps->errorBarShow & SHOW_Y))
- Blt_Draw2DSegments(graphPtr_->display_, drawable, penPtr->errorBarGC_,
- stylePtr->yeb.segments, stylePtr->yeb.length);
+ graphPtr_->drawSegments(drawable, penPtr->errorBarGC_,
+ stylePtr->yeb.segments, stylePtr->yeb.length);
if ((stylePtr->symbolPts.length > 0) &&
(penOps->symbol.type != SYMBOL_NONE))
@@ -699,13 +699,13 @@ void LineElement::print(Blt_Ps ps)
if ((stylePtr->xeb.length > 0) && (penOps->errorBarShow & SHOW_X)) {
Blt_Ps_XSetLineAttributes(ps, colorPtr, penOps->errorBarLineWidth,
NULL, CapButt, JoinMiter);
- Blt_Ps_Draw2DSegments(ps, stylePtr->xeb.segments,
+ graphPtr_->printSegments(ps, stylePtr->xeb.segments,
stylePtr->xeb.length);
}
if ((stylePtr->yeb.length > 0) && (penOps->errorBarShow & SHOW_Y)) {
Blt_Ps_XSetLineAttributes(ps, colorPtr, penOps->errorBarLineWidth,
NULL, CapButt, JoinMiter);
- Blt_Ps_Draw2DSegments(ps, stylePtr->yeb.segments,
+ graphPtr_->printSegments(ps, stylePtr->yeb.segments,
stylePtr->yeb.length);
}
if ((stylePtr->symbolPts.length > 0) &&