diff options
author | joye <joye> | 2014-04-15 19:10:44 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-15 19:10:44 (GMT) |
commit | 7d86d0b5b4808550983b7ac6b710da3fcb254e07 (patch) | |
tree | 3e6ef3799f56c1ea9ee3912c7f7500543b2d6809 /src/bltGrAxis.C | |
parent | c7750f7bc01b1ba30caee48a2ab237697988c2dc (diff) | |
download | blt-7d86d0b5b4808550983b7ac6b710da3fcb254e07.zip blt-7d86d0b5b4808550983b7ac6b710da3fcb254e07.tar.gz blt-7d86d0b5b4808550983b7ac6b710da3fcb254e07.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrAxis.C')
-rw-r--r-- | src/bltGrAxis.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bltGrAxis.C b/src/bltGrAxis.C index 8b163db..b0ff7d7 100644 --- a/src/bltGrAxis.C +++ b/src/bltGrAxis.C @@ -1056,7 +1056,7 @@ void Axis::resetTextStyles() gcMask = (GCForeground | GCLineWidth | GCCapStyle); gcValues.foreground = ops->tickColor->pixel; gcValues.font = Tk_FontId(ops->tickFont); - gcValues.line_width = LineWidth(ops->lineWidth); + gcValues.line_width = ops->lineWidth; gcValues.cap_style = CapProjecting; GC newGC = Tk_GetGC(graphPtr_->tkwin, gcMask, &gcValues); @@ -1072,7 +1072,7 @@ void Axis::resetTextStyles() activeTickGC_ = newGC; gcValues.background = gcValues.foreground = ops->major.color->pixel; - gcValues.line_width = LineWidth(ops->major.lineWidth); + gcValues.line_width = ops->major.lineWidth; gcMask = (GCForeground | GCBackground | GCLineWidth); if (LineIsDashed(ops->major.dashes)) { gcValues.line_style = LineOnOffDash; @@ -1088,7 +1088,7 @@ void Axis::resetTextStyles() ops->major.gc = newGC; gcValues.background = gcValues.foreground = ops->minor.color->pixel; - gcValues.line_width = LineWidth(ops->minor.lineWidth); + gcValues.line_width = ops->minor.lineWidth; gcMask = (GCForeground | GCBackground | GCLineWidth); if (LineIsDashed(ops->minor.dashes)) { gcValues.line_style = LineOnOffDash; |