Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

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

    r22857 r23124  
    2626{ 
    2727    // コンストラクタ 
    28     function __construct( 
     28    public function __construct( 
    2929        $bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = LINE_LEFT, $top = LINE_TOP, 
    3030        $area_width = LINE_AREA_WIDTH, $area_height = LINE_AREA_HEIGHT) { 
     
    3333 
    3434    // グラフの描画 
    35     function drawGraph() 
     35    public function drawGraph() 
    3636    { 
    3737        $this->drawYLine(); 
     
    5353 
    5454    // 棒グラフの描画 
    55     function drawBar($line_no) 
     55    public function drawBar($line_no) 
    5656    { 
    5757        $arrPointList = $this->arrPointList[$line_no]; 
     
    8383 
    8484    // ラベルを描画する 
    85     function drawLabel($line_no) 
     85    public function drawLabel($line_no) 
    8686    { 
    8787        $arrData = $this->arrDataList[$line_no]; 
Note: See TracChangeset for help on using the changeset viewer.