Kaydet (Commit) 756e090b authored tarafından Caolán McNamara's avatar Caolán McNamara

logging the simple message is sufficient

Change-Id: I84bced2b8dd92082f4777e00261ac87752278527
üst ccd22d24
......@@ -97,26 +97,23 @@ namespace slideshow
}
}
ViewAppletShape::~ViewAppletShape()
{
try
{
endApplet();
}
catch (uno::Exception &)
catch (const uno::Exception &e)
{
SAL_WARN( "slideshow", comphelper::anyToString( cppu::getCaughtException() ) );
SAL_WARN("slideshow", "" << e.Message);
}
}
const ViewLayerSharedPtr& ViewAppletShape::getViewLayer() const
{
return mpViewLayer;
}
void ViewAppletShape::startApplet( const ::basegfx::B2DRectangle& rBounds )
{
ENSURE_OR_RETURN_VOID( mpViewLayer && mpViewLayer->getCanvas() && mpViewLayer->getCanvas()->getUNOCanvas().is(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment