diff options
author | Michael Brauer <mib@openoffice.org> | 2001-03-16 11:50:15 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2001-03-16 11:50:15 +0000 |
commit | 5b06a883499743e71c2fa564c191488d3bcf3a0d (patch) | |
tree | e0a6fa4b99bcf11813747cbc422864abd39a3d10 /sw | |
parent | 02f5d52163eca8945fa587601b43cffe4152c913 (diff) |
Don't import/export class id of outplace object
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmltexte.cxx | 9 | ||||
-rw-r--r-- | sw/source/filter/xml/xmltexte.hxx | 6 |
2 files changed, 7 insertions, 8 deletions
diff --git a/sw/source/filter/xml/xmltexte.cxx b/sw/source/filter/xml/xmltexte.cxx index fcab648832b7..ceb00e10f88d 100644 --- a/sw/source/filter/xml/xmltexte.cxx +++ b/sw/source/filter/xml/xmltexte.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmltexte.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: mtg $ $Date: 2001-03-09 16:05:22 $ + * last change: $Author: mib $ $Date: 2001-03-16 12:50:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -269,7 +269,7 @@ SwXMLTextParagraphExport::~SwXMLTextParagraphExport() void SwXMLTextParagraphExport::getTextEmbeddedObjectProperties( const Reference < XPropertySet >& rPropSet, OUString& rURL, - OUString& rClassId ) const + sal_Bool& rExtern ) const { SwOLENode *pOLENd = GetNoTxtNode( rPropSet )->GetOLENode(); SwOLEObj& rOLEObj = pOLENd->GetOLEObj(); @@ -281,8 +281,7 @@ void SwXMLTextParagraphExport::getTextEmbeddedObjectProperties( if( pInfo ) { SvGlobalName aClassName( pInfo->GetClassName() ); - if( !SvFactory::IsIntern( aClassName, 0 ) ) - rClassId = aClassName.GetHexName(); + rExtern = !SvFactory::IsIntern( aClassName, 0 ); } } diff --git a/sw/source/filter/xml/xmltexte.hxx b/sw/source/filter/xml/xmltexte.hxx index f1692a43d615..6ff7e0702490 100644 --- a/sw/source/filter/xml/xmltexte.hxx +++ b/sw/source/filter/xml/xmltexte.hxx @@ -2,9 +2,9 @@ * * $RCSfile: xmltexte.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: mib $ $Date: 2001-03-05 11:59:21 $ + * last change: $Author: mib $ $Date: 2001-03-16 12:50:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -108,7 +108,7 @@ public: const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet >& rPropSet, ::rtl::OUString& rStreamName, - ::rtl::OUString& rClassId ) const; + sal_Bool& rExtern ) const; virtual void setTextEmbeddedGraphicURL( const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet >& rPropSet, |