summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/documentinfo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/documentinfo.cxx')
-rw-r--r--comphelper/source/misc/documentinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/documentinfo.cxx b/comphelper/source/misc/documentinfo.cxx
index 9a75a6fbf85b..9a2d6e819334 100644
--- a/comphelper/source/misc/documentinfo.cxx
+++ b/comphelper/source/misc/documentinfo.cxx
@@ -153,12 +153,12 @@ namespace comphelper {
}
catch ( const Exception& )
{
- ::com::sun::star::uno::Any caught( ::cppu::getCaughtException() );
+ css::uno::Any caught( ::cppu::getCaughtException() );
OString sMessage( "caught an exception!" );
sMessage += "\ntype : ";
sMessage += OString( caught.getValueTypeName().getStr(), caught.getValueTypeName().getLength(), osl_getThreadTextEncoding() );
sMessage += "\nmessage: ";
- ::com::sun::star::uno::Exception exception;
+ css::uno::Exception exception;
caught >>= exception;
sMessage += OString( exception.Message.getStr(), exception.Message.getLength(), osl_getThreadTextEncoding() );
sMessage += "\nin function:\n";