summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/filter/xml/xmltexte.cxx9
-rw-r--r--sw/source/filter/xml/xmltexte.hxx6
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,