summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msoleexp.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/msfilter/msoleexp.cxx b/filter/source/msfilter/msoleexp.cxx
index 9915f1420139..edd0ad7a160f 100644
--- a/filter/source/msfilter/msoleexp.cxx
+++ b/filter/source/msfilter/msoleexp.cxx
@@ -79,17 +79,17 @@ SvGlobalName GetEmbeddedVersion( const SvGlobalName& aAppName )
String GetStorageType( const SvGlobalName& aEmbName )
{
if ( aEmbName == SvGlobalName( SO3_SM_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.MathDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.MathDocument.1" );
else if ( aEmbName == SvGlobalName( SO3_SW_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.WriterDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.WriterDocument.1" );
else if ( aEmbName == SvGlobalName( SO3_SC_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.CalcDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.CalcDocument.1" );
else if ( aEmbName == SvGlobalName( SO3_SDRAW_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.DrawDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.DrawDocument.1" );
else if ( aEmbName == SvGlobalName( SO3_SIMPRESS_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.ImpressDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.ImpressDocument.1" );
else if ( aEmbName == SvGlobalName( SO3_SCH_OLE_EMBED_CLASSID_8 ) )
- return String::CreateFromAscii( "opendocument.ChartDocument.1" );
+ return String::CreateFromAscii( "LibreOffice.ChartDocument.1" );
return String();
}