diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-07-01 07:49:37 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-07-01 07:49:37 +0000 |
commit | aa973f0af699f40775362c1872b497a0086b924a (patch) | |
tree | 8e54ceaf85ab742091f73e502d2e5e688028fc22 /lib | |
parent | 3a79ab74010fc6bbddf75fef9cc3706f31d9cc37 (diff) | |
download | redmine-aa973f0af699f40775362c1872b497a0086b924a.tar.gz redmine-aa973f0af699f40775362c1872b497a0086b924a.zip |
PDF: code clean up lib/redmine/export/pdf.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6138 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index b0b543c4d..97c6b9e1a 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -107,8 +107,8 @@ module Redmine RDMPdfEncoding::rdm_pdf_iconv(@ic, txt) end - def RDMCell(w,h=0,txt='',border=0,ln=0,align='',fill=0,link='') - Cell(w,h,fix_text_encoding(txt),border,ln,align,fill,link) + def RDMCell(w ,h=0, txt='', border=0, ln=0, align='', fill=0, link='') + Cell(w, h, fix_text_encoding(txt), border, ln, align, fill, link) end def RDMMultiCell(w, h=0, txt='', border=0, align='', fill=0, ln=1) |