Kaydet (Commit) 159e7879 authored tarafından Michael Stahl's avatar Michael Stahl

sw: fix MSVC build, stupid thing can't initialize const members

Change-Id: I546b96a5628d2ad186b5b626cce28f67841db157
üst 30d7f510
...@@ -476,11 +476,11 @@ static uno::Reference<io::XInputStream> lcl_StoreOwnAsOOXML( ...@@ -476,11 +476,11 @@ static uno::Reference<io::XInputStream> lcl_StoreOwnAsOOXML(
sal_uInt32 n1; sal_uInt32 n1;
sal_uInt16 n2, n3; sal_uInt16 n2, n3;
sal_uInt8 b8, b9, b10, b11, b12, b13, b14, b15; sal_uInt8 b8, b9, b10, b11, b12, b13, b14, b15;
} const ClassId; } ClassId;
char const*const pFilterName; char const* pFilterName;
char const*const pMediaType; char const* pMediaType;
char const*const pProgID; char const* pProgID;
char const*const pSuffix; char const* pSuffix;
} s_Mapping[] = { } s_Mapping[] = {
{ {SO3_SW_CLASSID_60}, "MS Word 2007 XML", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "Word.Document.12", "docx" }, { {SO3_SW_CLASSID_60}, "MS Word 2007 XML", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "Word.Document.12", "docx" },
{ {SO3_SC_CLASSID_60}, "Calc MS Excel 2007 XML", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "Excel.Sheet.12", "xlsx" }, { {SO3_SC_CLASSID_60}, "Calc MS Excel 2007 XML", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "Excel.Sheet.12", "xlsx" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment