diff options
| author | Randy Morgan <[email protected]> | 2012-08-11 17:06:20 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-08-11 17:06:20 +0900 |
| commit | 5e2916f42be04d98d5601e479713023587f360aa (patch) | |
| tree | e6b2481c1c55da4ad6a80f900350ad848270b9f0 /lib/axlsx/doc_props | |
| parent | 675d3c7ad41207d29b08bc3157790c00980e00c3 (diff) | |
| download | caxlsx-5e2916f42be04d98d5601e479713023587f360aa.tar.gz caxlsx-5e2916f42be04d98d5601e479713023587f360aa.zip | |
backward compat for 1.8.7
Diffstat (limited to 'lib/axlsx/doc_props')
| -rw-r--r-- | lib/axlsx/doc_props/app.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/axlsx/doc_props/app.rb b/lib/axlsx/doc_props/app.rb index 39f86eb4..d9e9efb0 100644 --- a/lib/axlsx/doc_props/app.rb +++ b/lib/axlsx/doc_props/app.rb @@ -134,15 +134,15 @@ module Axlsx # Sets the template property of your app.xml file def template=(v) Axlsx::validate_string v; @template = v; end - alias :Template :template + alias :Template= :template= # Sets the manager property of your app.xml file def manager=(v) Axlsx::validate_string v; @manager = v; end - alias :Manager :manager + alias :Manager= :manager= # Sets the company property of your app.xml file def company=(v) Axlsx::validate_string v; @company = v; end - alias :Company :company + alias :Company= :company= # Sets the pages property of your app.xml file def pages=(v) Axlsx::validate_int v; @pages = v; end |
