You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/12/12 15:25:58 UTC

svn commit: r1550424 - /openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx

Author: hdu
Date: Thu Dec 12 14:25:58 2013
New Revision: 1550424

URL: http://svn.apache.org/r1550424
Log:
#i123840# fix narrow conversions when initializing SC's szMSFilterNames array

Modified:
    openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx

Modified: openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx?rev=1550424&r1=1550423&r2=1550424&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/docshell/docsh.cxx Thu Dec 12 14:25:58 2013
@@ -204,7 +204,7 @@ namespace
         static const struct
         {
             const char * mpFilterName;
-            unsigned mnFilterNameLen;
+            size_t mnFilterNameLen;
         } szMSFilterNames [] = 
         {
             { pFilterExcel4, strlen( pFilterExcel4 ) },