summaryrefslogtreecommitdiff
path: root/framework/source/fwe/xml/toolboxconfiguration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwe/xml/toolboxconfiguration.cxx')
-rw-r--r--framework/source/fwe/xml/toolboxconfiguration.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/framework/source/fwe/xml/toolboxconfiguration.cxx b/framework/source/fwe/xml/toolboxconfiguration.cxx
index 013702dec886..11460f9a0a73 100644
--- a/framework/source/fwe/xml/toolboxconfiguration.cxx
+++ b/framework/source/fwe/xml/toolboxconfiguration.cxx
@@ -41,9 +41,9 @@ namespace framework
{
bool ToolBoxConfiguration::LoadToolBox(
- 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 ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer >& rToolbarConfiguration )
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XInputStream >& rInputStream,
+ const css::uno::Reference< css::container::XIndexContainer >& rToolbarConfiguration )
{
Reference< XParser > xParser = Parser::create(rxContext);
@@ -72,16 +72,16 @@ bool ToolBoxConfiguration::LoadToolBox(
{
return false;
}
- catch( const ::com::sun::star::io::IOException& )
+ catch( const css::io::IOException& )
{
return false;
}
}
bool ToolBoxConfiguration::StoreToolBox(
- 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 ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& rToolbarConfiguration )
+ const css::uno::Reference< css::uno::XComponentContext >& rxContext,
+ const css::uno::Reference< css::io::XOutputStream >& rOutputStream,
+ const css::uno::Reference< css::container::XIndexAccess >& rToolbarConfiguration )
{
Reference< XWriter > xWriter = Writer::create(rxContext);
xWriter->setOutputStream( rOutputStream );
@@ -101,7 +101,7 @@ bool ToolBoxConfiguration::StoreToolBox(
{
return false;
}
- catch ( const ::com::sun::star::io::IOException& )
+ catch ( const css::io::IOException& )
{
return false;
}