summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2002-06-11 07:07:05 +0000
committerOliver Bolte <obo@openoffice.org>2002-06-11 07:07:05 +0000
commit9b7eaf2e3eca2448998853ba59cb9b754ac75f14 (patch)
tree701209535fc84afeffef8d3dd97258933137f03a /xmloff
parent27e4b854d31488636bb93081d96c369477190227 (diff)
#65293# missing brackets
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmlexp.cxx8
-rw-r--r--xmloff/source/core/xmlimp.cxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx
index de5ded5f2817..2888f9015de8 100644
--- a/xmloff/source/core/xmlexp.cxx
+++ b/xmloff/source/core/xmlexp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlexp.cxx,v $
*
- * $Revision: 1.95 $
+ * $Revision: 1.96 $
*
- * last change: $Author: cl $ $Date: 2002-06-04 08:25:04 $
+ * last change: $Author: obo $ $Date: 2002-06-11 08:07:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -953,7 +953,7 @@ sal_uInt32 SvXMLExport::exportDoc( enum ::xmloff::token::XMLTokenEnum eClass )
xFactory->createInstance(
OUString(RTL_CONSTASCII_USTRINGPARAM(
"com.sun.star.document.ExportGraphicObjectResolver"))));
- bOwnGraphicResolver = xGraphicResolver.is;
+ bOwnGraphicResolver = xGraphicResolver.is();
}
if( !xEmbeddedResolver.is() )
@@ -962,7 +962,7 @@ sal_uInt32 SvXMLExport::exportDoc( enum ::xmloff::token::XMLTokenEnum eClass )
xFactory->createInstance(
OUString(RTL_CONSTASCII_USTRINGPARAM(
"com.sun.star.document.ExportEmbeddedObjectResolver"))));
- bOwnEmbeddedResolver = xEmbeddedResolver.is;
+ bOwnEmbeddedResolver = xEmbeddedResolver.is();
}
}
catch( com::sun::star::uno::Exception& )
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx
index 6abd9894ea85..2b593276fd04 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlimp.cxx,v $
*
- * $Revision: 1.63 $
+ * $Revision: 1.64 $
*
- * last change: $Author: aw $ $Date: 2002-06-06 11:11:21 $
+ * last change: $Author: obo $ $Date: 2002-06-11 08:07:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -527,7 +527,7 @@ void SAL_CALL SvXMLImport::startDocument( void )
OUString(RTL_CONSTASCII_USTRINGPARAM(
// #99870# Import... instead of Export...
"com.sun.star.document.ImportGraphicObjectResolver"))));
- pImpl->mbOwnGraphicResolver = xGraphicResolver.is;
+ pImpl->mbOwnGraphicResolver = xGraphicResolver.is();
}
if( !xEmbeddedResolver.is() )
@@ -537,7 +537,7 @@ void SAL_CALL SvXMLImport::startDocument( void )
OUString(RTL_CONSTASCII_USTRINGPARAM(
// #99870# Import... instead of Export...
"com.sun.star.document.ImportEmbeddedObjectResolver"))));
- pImpl->mbOwnEmbeddedResolver = xEmbeddedResolver.is;
+ pImpl->mbOwnEmbeddedResolver = xEmbeddedResolver.is();
}
}
catch( com::sun::star::uno::Exception& )