summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook/worksheet/table_style_info.rb
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-09-23 11:20:37 +0900
committerRandy Morgan <[email protected]>2012-09-23 11:20:37 +0900
commite73bd501eb15106daeb4cf9830991a8181835b06 (patch)
tree441057859986aafb27d4cc21171eca52a18153c8 /lib/axlsx/workbook/worksheet/table_style_info.rb
parent54e3e2f157df97e6edebaca3510fb0603be432a9 (diff)
downloadcaxlsx-e73bd501eb15106daeb4cf9830991a8181835b06.tar.gz
caxlsx-e73bd501eb15106daeb4cf9830991a8181835b06.zip
Autofilter extended implementation
Beginnings of 18.3.2 AutoFilter Settings implementation. I've moved auto_filter into its own directory as there will be a minimum of 15 or 20 classes required to implement this in full.
Diffstat (limited to 'lib/axlsx/workbook/worksheet/table_style_info.rb')
-rw-r--r--lib/axlsx/workbook/worksheet/table_style_info.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/table_style_info.rb b/lib/axlsx/workbook/worksheet/table_style_info.rb
index f0d08d8b..778546e0 100644
--- a/lib/axlsx/workbook/worksheet/table_style_info.rb
+++ b/lib/axlsx/workbook/worksheet/table_style_info.rb
@@ -20,7 +20,7 @@ module Axlsx
# @see Annex G. (normative) Predefined SpreadsheetML Style Definitions in part 1 of the specification.
def initialize(options = {})
initialize_defaults
- name= 'TableStyleMedium9'
+ @name = 'TableStyleMedium9'
options.each do |k, v|
send("#{k}=", v) if respond_to? "#{k}="
end