summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-12-12 14:25:58 +0000
committerHerbert Dürr <hdu@apache.org>2013-12-12 14:25:58 +0000
commitceb2dee36c581811c3aba380fcf994c3ccd116b5 (patch)
tree47fe599e7bdcb9cbba87d02a2db52d1c063b891a
parentff19bc876f2e2c13f9040e148c32ed8c1c1ab9ca (diff)
#i123840# fix narrowing conversions when initializing SC's szMSFilterNames array
Notes
Notes: ignore: fixed
-rw-r--r--sc/source/ui/docshell/docsh.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx
index 8c63247c2247..8e540e6ae932 100644
--- a/sc/source/ui/docshell/docsh.cxx
+++ b/sc/source/ui/docshell/docsh.cxx
@@ -204,7 +204,7 @@ namespace
static const struct
{
const char * mpFilterName;
- unsigned mnFilterNameLen;
+ size_t mnFilterNameLen;
} szMSFilterNames [] =
{
{ pFilterExcel4, strlen( pFilterExcel4 ) },