lib/axlsx/drawing/title.rb in axlsx-2.0.1 vs lib/axlsx/drawing/title.rb in axlsx-2.1.0.pre
- old
+ new
@@ -46,24 +46,24 @@
str << '<c:title>'
unless @text.empty?
str << '<c:tx>'
if @cell.is_a?(Cell)
str << '<c:strRef>'
- str << '<c:f>' << Axlsx::cell_range([@cell]) << '</c:f>'
+ str << ('<c:f>' << Axlsx::cell_range([@cell]) << '</c:f>')
str << '<c:strCache>'
str << '<c:ptCount val="1"/>'
str << '<c:pt idx="0">'
- str << '<c:v>' << @text << '</c:v>'
+ str << ('<c:v>' << @text << '</c:v>')
str << '</c:pt>'
str << '</c:strCache>'
str << '</c:strRef>'
else
str << '<c:rich>'
str << '<a:bodyPr/>'
str << '<a:lstStyle/>'
str << '<a:p>'
str << '<a:r>'
- str << '<a:t>' << @text.to_s << '</a:t>'
+ str << ('<a:t>' << @text.to_s << '</a:t>')
str << '</a:r>'
str << '</a:p>'
str << '</c:rich>'
end
str << '</c:tx>'