Ignore:
Timestamp:
2014/06/03 14:57:02 (12 years ago)
Author:
shutta
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/graph/SC_Graph_Line.php

    r23124 r23504  
    131131            $x = $arrPointList[$i][0]; 
    132132            $pos = $this->top + $this->area_height; 
    133             imageline($this->image, $x - $half_scale, $pos, $x - $half_scale, $pos - LINE_SCALE_SIZE,  $this->flame_color); 
     133            imageline($this->image, $x - $half_scale, $pos, $x - $half_scale, $pos - LINE_SCALE_SIZE, $this->flame_color); 
    134134            // ラベルを入れる 
    135135            if (($i % $interval) == 0) { 
     
    149149        // 棒グラフの場合は最後の目盛りを一つ追加する 
    150150        if ($bar) { 
    151             imageline($this->image, $x + $half_scale, $pos, $x + $half_scale, $pos - LINE_SCALE_SIZE,  $this->flame_color); 
     151            imageline($this->image, $x + $half_scale, $pos, $x + $half_scale, $pos - LINE_SCALE_SIZE, $this->flame_color); 
    152152        } 
    153153 
Note: See TracChangeset for help on using the changeset viewer.