summaryrefslogtreecommitdiff
path: root/framework/source/xml/imagesconfiguration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/xml/imagesconfiguration.cxx')
-rw-r--r--framework/source/xml/imagesconfiguration.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/source/xml/imagesconfiguration.cxx b/framework/source/xml/imagesconfiguration.cxx
index c8beaf3e3519..23e718e961ed 100644
--- a/framework/source/xml/imagesconfiguration.cxx
+++ b/framework/source/xml/imagesconfiguration.cxx
@@ -41,8 +41,8 @@ namespace framework
{
bool ImagesConfiguration::LoadImages(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& rInputStream,
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XInputStream >& rInputStream,
ImageListsDescriptor& rItems )
{
Reference< XParser > xParser = Parser::create( rxContext );
@@ -72,15 +72,15 @@ bool ImagesConfiguration::LoadImages(
{
return false;
}
- catch( const ::com::sun::star::io::IOException& )
+ catch( const css::io::IOException& )
{
return false;
}
}
bool ImagesConfiguration::StoreImages(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
- const ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >& rOutputStream,
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XOutputStream >& rOutputStream,
const ImageListsDescriptor& rItems )
{
Reference< XWriter > xWriter = Writer::create(rxContext);
@@ -100,7 +100,7 @@ bool ImagesConfiguration::StoreImages(
{
return false;
}
- catch ( const ::com::sun::star::io::IOException& )
+ catch ( const css::io::IOException& )
{
return false;
}