From ceb2dee36c581811c3aba380fcf994c3ccd116b5 Mon Sep 17 00:00:00 2001 From: Herbert Dürr <hdu@apache.org> Date: Thu, 12 Dec 2013 14:25:58 +0000 Subject: #i123840# fix narrowing conversions when initializing SC's szMSFilterNames array --- sc/source/ui/docshell/docsh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) }, -- cgit