Ignore:
Timestamp:
2012/02/15 19:56:17 (12 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

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

    r21490 r21514  
    6262    function drawYTitle() { 
    6363        // Y軸にタイトルを入れる 
    64         if ($this->YTitle != "") { 
     64        if ($this->YTitle != '') { 
    6565            $text_width = $this->getTextWidth($this->YTitle, FONT_SIZE); 
    6666            $x_pos = $this->left - ($text_width / 2); 
     
    7373    function drawXTitle() { 
    7474        // Y軸にタイトルを入れる 
    75         if ($this->XTitle != "") { 
     75        if ($this->XTitle != '') { 
    7676            $text_width = $this->getTextWidth($this->XTitle, FONT_SIZE); 
    7777            $x_pos = $this->left + $this->area_width - ($text_width / 2) + 30; 
Note: See TracChangeset for help on using the changeset viewer.