summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/objxtor.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-29 16:21:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-04 15:18:00 +0200
commit2c05d758b2b62c9df413e2514fb3cd233d0f3ec7 (patch)
treee0a23d3da6fb17ae97d18957fc14f4a4a8de2d3f /sfx2/source/doc/objxtor.cxx
parenta3088b1e72ef17babe3d3664c610afd02cfe0891 (diff)
add << operator for css::uno::Exception
Change-Id: Ia23dafd07133779144965682df3b7125a3214235 Reviewed-on: https://gerrit.libreoffice.org/43046 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sfx2/source/doc/objxtor.cxx')
-rw-r--r--sfx2/source/doc/objxtor.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/doc/objxtor.cxx b/sfx2/source/doc/objxtor.cxx
index a9da93c3187c..738ea5e10f71 100644
--- a/sfx2/source/doc/objxtor.cxx
+++ b/sfx2/source/doc/objxtor.cxx
@@ -662,7 +662,7 @@ BasicManager* SfxObjectShell::GetBasicManager() const
}
catch (const css::ucb::ContentCreationException& e)
{
- SAL_WARN("sfx.doc", "caught exception " << e.Message);
+ SAL_WARN("sfx.doc", "caught " << e);
}
#endif
return pBasMgr;
@@ -729,7 +729,7 @@ Reference< XLibraryContainer > SfxObjectShell::GetDialogContainer()
}
catch (const css::ucb::ContentCreationException& e)
{
- SAL_WARN("sfx.doc", "caught exception " << e.Message);
+ SAL_WARN("sfx.doc", "caught " << e);
}
SAL_WARN("sfx.doc", "SfxObjectShell::GetDialogContainer: falling back to the application - is this really expected here?");
@@ -753,7 +753,7 @@ Reference< XLibraryContainer > SfxObjectShell::GetBasicContainer()
}
catch (const css::ucb::ContentCreationException& e)
{
- SAL_WARN("sfx.doc", "caught exception " << e.Message);
+ SAL_WARN("sfx.doc", "caught " << e);
}
}
SAL_WARN("sfx.doc", "SfxObjectShell::GetBasicContainer: falling back to the application - is this really expected here?");
@@ -816,7 +816,7 @@ void SfxObjectShell::InitBasicManager_Impl()
}
catch (const css::ucb::ContentCreationException& e)
{
- SAL_WARN("sfx.doc", "caught exception " << e.Message);
+ SAL_WARN("sfx.doc", "caught " << e);
}
DBG_ASSERT( pImpl->aBasicManager.isValid(), "SfxObjectShell::InitBasicManager_Impl: did not get a BasicManager!" );
pImpl->bBasicInitialized = true;