diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-18 11:57:13 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-18 14:13:23 -0500 |
commit | 4f8976be9a04f3967b7e4a11f130f7aee50a56f4 (patch) | |
tree | 08658c0c30dc9dde6e5bb9f22fec1639ecdff203 /sc | |
parent | 3c8348017b77640262ca5dd88b9f9429e6d07037 (diff) |
Used constants if possible.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/read.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/read.cxx b/sc/source/filter/excel/read.cxx index 7900d85de7ae..8273c1c972b6 100644 --- a/sc/source/filter/excel/read.cxx +++ b/sc/source/filter/excel/read.cxx @@ -1126,8 +1126,8 @@ FltError ImportExcel8::Read( void ) case 0x8C: Country(); break; // COUNTRY [ 345 ] case 0x99: Standardwidth(); break; // STANDARDWIDTH[ 45 ] case 0x9B: FilterMode(); break; // FILTERMODE - case 0x9D: AutoFilterInfo(); break;// AUTOFILTERINFO - case 0x9E: AutoFilter(); break; // AUTOFILTER + case EXC_ID_AUTOFILTERINFO: AutoFilterInfo(); break;// AUTOFILTERINFO + case EXC_ID_AUTOFILTER: AutoFilter(); break; // AUTOFILTER case 0x0208: Row34(); break; // ROW [ 34 ] case EXC_ID2_ARRAY: case EXC_ID3_ARRAY: Array34(); break; // ARRAY [ 34 ] |