diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-06-04 11:02:45 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-06-04 11:02:45 +0000 |
commit | 1fd7540b858688e2467165fb068d2e56cbb8de6a (patch) | |
tree | bafc055f538f44ab7f11962d6bebc4e331b0f98c /lib | |
parent | 7bc0c261983607e7a9fb9a93f2d8f978ba45536c (diff) | |
download | redmine-1fd7540b858688e2467165fb068d2e56cbb8de6a.tar.gz redmine-1fd7540b858688e2467165fb068d2e56cbb8de6a.zip |
pdf: replace "id_width" parameter name to original "col_id_width" (#14178)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11921 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 66abe49c4..f720e662a 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -511,8 +511,9 @@ module Redmine # Draw lines to close the row (MultiCell border drawing in not uniform) # - # parameter "id_width" is not used. it is kept for compatibility. - def issues_to_pdf_draw_borders(pdf, top_x, top_y, lower_y, id_width, col_widths) + # parameter "col_id_width" is not used. it is kept for compatibility. + def issues_to_pdf_draw_borders(pdf, top_x, top_y, lower_y, + col_id_width, col_widths) col_x = top_x pdf.Line(col_x, top_y, col_x, lower_y) # id right border col_widths.each do |width| |