diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-05 23:04:32 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-05 23:04:32 +0000 |
commit | 91e4d7d29878008a0f56b1000bae39f6a8ac5806 (patch) | |
tree | 7b243309a75f90e9029c3bd81258fc6b5405a21d /lib | |
parent | 00277a2a0a1bc6f9caca49d3061bfa271c7ddea0 (diff) | |
download | redmine-91e4d7d29878008a0f56b1000bae39f6a8ac5806.tar.gz redmine-91e4d7d29878008a0f56b1000bae39f6a8ac5806.zip |
code clean up lib/redmine/export/pdf.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5335 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 10ef5dfd8..e512d7f3c 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -202,7 +202,7 @@ module Redmine end # title - pdf.SetFontStyle('B',11) + pdf.SetFontStyle('B',11) pdf.RDMCell(190,10, title) pdf.Ln @@ -271,7 +271,7 @@ module Redmine pdf.footer_date = format_date(Date.today) pdf.AddPage - pdf.SetFontStyle('B',11) + pdf.SetFontStyle('B',11) pdf.RDMCell(190,10, "#{issue.project} - #{issue.tracker} # #{issue.id}: #{issue.subject}") pdf.Ln @@ -285,7 +285,7 @@ module Redmine pdf.SetFontStyle('B',9) pdf.RDMCell(35,5, l(:field_priority) + ":","LT") pdf.SetFontStyle('',9) - pdf.RDMCell(60,5, issue.priority.to_s,"RT") + pdf.RDMCell(60,5, issue.priority.to_s,"RT") pdf.Ln pdf.SetFontStyle('B',9) |