From 91e4d7d29878008a0f56b1000bae39f6a8ac5806 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 5 Apr 2011 23:04:32 +0000 Subject: [PATCH] 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 --- lib/redmine/export/pdf.rb | 6 +++--- 1 file 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) -- 2.39.5