summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorJesús Corrius <jesus@softcatala.org>2012-05-31 18:13:22 +0200
committerJesús Corrius <jesus@softcatala.org>2012-05-31 18:19:08 +0200
commitd55419832895a71b92923189137961f45ff18e72 (patch)
tree1d926b0a399823640b4bca7555b6be1ba1a01ac1 /filter
parent88fde84afb5c3781a6f10d971e067993eea127dc (diff)
Make Win32 LibO installable side by side with other StarOffice derivatives
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();
}