summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/tools/ConfigurationAccess.cxx2
-rw-r--r--sd/source/ui/unoidl/DrawController.cxx2
-rw-r--r--sd/source/ui/unoidl/unomodel.cxx2
-rw-r--r--sd/source/ui/view/drviewsa.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/tools/ConfigurationAccess.cxx b/sd/source/ui/tools/ConfigurationAccess.cxx
index 2b9285c6ebc2..d06dd5929f6a 100644
--- a/sd/source/ui/tools/ConfigurationAccess.cxx
+++ b/sd/source/ui/tools/ConfigurationAccess.cxx
@@ -106,7 +106,7 @@ Any ConfigurationAccess::GetConfigurationNode (
}
catch (const Exception& rException)
{
- SAL_WARN("sd", "caught exception while getting configuration node" << sPathToNode << ": " << rException.Message);
+ SAL_WARN("sd", "caught exception while getting configuration node" << sPathToNode << ": " << rException);
}
return Any();
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx
index ba6b31ebe8b5..c64647442829 100644
--- a/sd/source/ui/unoidl/DrawController.cxx
+++ b/sd/source/ui/unoidl/DrawController.cxx
@@ -424,7 +424,7 @@ void DrawController::FireSwitchCurrentPage (SdPage* pNewCurrentPage) throw()
}
catch (const uno::Exception& e)
{
- SAL_WARN("sd", "sd::SdUnoDrawView::FireSwitchCurrentPage(), exception caught: " << e.Message);
+ SAL_WARN("sd", "sd::SdUnoDrawView::FireSwitchCurrentPage(), exception caught: " << e);
}
}
}
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index 90d75e5871f3..52ecca7729da 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -322,7 +322,7 @@ void SAL_CALL SdXImpressDocument::release() throw ( )
}
catch (const uno::RuntimeException& exc)
{ // don't break throw ()
- SAL_WARN( "sd", exc.Message );
+ SAL_WARN( "sd", exc );
}
}
SfxBaseModel::release();
diff --git a/sd/source/ui/view/drviewsa.cxx b/sd/source/ui/view/drviewsa.cxx
index 06ae7dae72b1..0fedb24f1b56 100644
--- a/sd/source/ui/view/drviewsa.cxx
+++ b/sd/source/ui/view/drviewsa.cxx
@@ -330,7 +330,7 @@ void DrawViewShell::Construct(DrawDocShell* pDocSh, PageKind eInitialPageKind)
{
// Eat the exception and log it
// We can still continue if scanner manager is not available.
- SAL_WARN("sd", "Scanner manager exception: " << exception.Message);
+ SAL_WARN("sd", "Scanner manager exception: " << exception);
}
mpAnnotationManager.reset( new AnnotationManager( GetViewShellBase() ) );