PDF: add dummy 'fill' parameter at rfpdf CJK Write method (#8737).
'fill' parameter is already added in trunk by r6131, r6132, r6133. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6156 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bf0046b5af
commit
edc4f6d54b
|
@ -236,7 +236,7 @@ module PDF_Chinese
|
||||||
@x=@l_margin
|
@x=@l_margin
|
||||||
end
|
end
|
||||||
|
|
||||||
def Write(h,txt,link='')
|
def Write(h,txt,link='',fill=0)
|
||||||
if(@current_font['type']=='Type0')
|
if(@current_font['type']=='Type0')
|
||||||
MBWrite(h,txt,link)
|
MBWrite(h,txt,link)
|
||||||
else
|
else
|
||||||
|
|
|
@ -224,7 +224,7 @@ module PDF_Japanese
|
||||||
@x=@l_margin
|
@x=@l_margin
|
||||||
end
|
end
|
||||||
|
|
||||||
def Write(h,txt,link='')
|
def Write(h,txt,link='',fill=0)
|
||||||
if(@current_font['type']=='Type0')
|
if(@current_font['type']=='Type0')
|
||||||
SJISWrite(h,txt,link)
|
SJISWrite(h,txt,link)
|
||||||
else
|
else
|
||||||
|
|
|
@ -205,7 +205,7 @@ UHC_widths={' ' => 333, '!' => 416, '"' => 416, '#' => 833, '$' => 625, '%' => 9
|
||||||
@x=@l_margin
|
@x=@l_margin
|
||||||
end
|
end
|
||||||
|
|
||||||
def Write(h,txt,link='')
|
def Write(h,txt,link='',fill=0)
|
||||||
if(@current_font['type']=='Type0')
|
if(@current_font['type']=='Type0')
|
||||||
MBWrite(h,txt,link)
|
MBWrite(h,txt,link)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue