diff options
| author | Randy Morgan <[email protected]> | 2012-09-23 11:20:37 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-09-23 11:20:37 +0900 |
| commit | e73bd501eb15106daeb4cf9830991a8181835b06 (patch) | |
| tree | 441057859986aafb27d4cc21171eca52a18153c8 /lib/axlsx/workbook/worksheet/table_style_info.rb | |
| parent | 54e3e2f157df97e6edebaca3510fb0603be432a9 (diff) | |
| download | caxlsx-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.rb | 2 |
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 |
