diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-09 20:57:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-09 20:59:10 +0000 |
commit | 01112d2a6383bbb777db973c60b809b29576f39f (patch) | |
tree | bf0676145792a4959a83725fa40006f63d7e10ef /slideshow | |
parent | 3b7054e0bb86cec2db08b7c7654710a21cf66a94 (diff) |
some OSL_FAIL to SAL_WARN
Change-Id: I5101e42b7a34cca9055fc805d9a392ba4f920a3d
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/activitiesqueue.cxx | 7 | ||||
-rw-r--r-- | slideshow/source/engine/eventqueue.cxx | 7 | ||||
-rw-r--r-- | slideshow/source/engine/rehearsetimingsactivity.cxx | 7 | ||||
-rw-r--r-- | slideshow/source/engine/shapesubset.cxx | 7 | ||||
-rw-r--r-- | slideshow/source/engine/slide/userpaintoverlay.cxx | 7 | ||||
-rw-r--r-- | slideshow/source/engine/transitions/shapetransitionfactory.cxx | 10 | ||||
-rw-r--r-- | slideshow/source/engine/usereventqueue.cxx | 8 |
7 files changed, 15 insertions, 38 deletions
diff --git a/slideshow/source/engine/activitiesqueue.cxx b/slideshow/source/engine/activitiesqueue.cxx index 8ece2a330543..4a159c2b9509 100644 --- a/slideshow/source/engine/activitiesqueue.cxx +++ b/slideshow/source/engine/activitiesqueue.cxx @@ -55,12 +55,9 @@ namespace slideshow for( const auto& pActivity : maCurrentActivitiesReinsert ) pActivity->dispose(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } diff --git a/slideshow/source/engine/eventqueue.cxx b/slideshow/source/engine/eventqueue.cxx index 4a34400b8def..bcf8d1b685a5 100644 --- a/slideshow/source/engine/eventqueue.cxx +++ b/slideshow/source/engine/eventqueue.cxx @@ -73,12 +73,9 @@ namespace slideshow { maEvents.top().pEvent->dispose(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } maEvents.pop(); } diff --git a/slideshow/source/engine/rehearsetimingsactivity.cxx b/slideshow/source/engine/rehearsetimingsactivity.cxx index a08b50dd8f42..788f0434597f 100644 --- a/slideshow/source/engine/rehearsetimingsactivity.cxx +++ b/slideshow/source/engine/rehearsetimingsactivity.cxx @@ -179,12 +179,9 @@ RehearseTimingsActivity::~RehearseTimingsActivity() { stop(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } diff --git a/slideshow/source/engine/shapesubset.cxx b/slideshow/source/engine/shapesubset.cxx index 23fd8099e829..46c0d0c8d2c3 100644 --- a/slideshow/source/engine/shapesubset.cxx +++ b/slideshow/source/engine/shapesubset.cxx @@ -79,12 +79,9 @@ namespace slideshow // if not done yet: revoke subset from original disableSubsetShape(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } diff --git a/slideshow/source/engine/slide/userpaintoverlay.cxx b/slideshow/source/engine/slide/userpaintoverlay.cxx index 3e720c3b9322..3657de8937a3 100644 --- a/slideshow/source/engine/slide/userpaintoverlay.cxx +++ b/slideshow/source/engine/slide/userpaintoverlay.cxx @@ -487,12 +487,9 @@ namespace slideshow mrMultiplexer.removeViewHandler( mpHandler ); mpHandler->dispose(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } } diff --git a/slideshow/source/engine/transitions/shapetransitionfactory.cxx b/slideshow/source/engine/transitions/shapetransitionfactory.cxx index 63c0fa6a3211..8b46d97a33c7 100644 --- a/slideshow/source/engine/transitions/shapetransitionfactory.cxx +++ b/slideshow/source/engine/transitions/shapetransitionfactory.cxx @@ -110,12 +110,9 @@ ClippingAnimation::~ClippingAnimation() { end_(); } - catch (uno::Exception &) + catch (const uno::Exception&) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } @@ -354,9 +351,6 @@ AnimationActivitySharedPtr createShapeTransitionByType( SAL_WARN("slideshow", "createShapeTransitionByType(): Unknown type/subtype combination encountered: " << xTransition->getTransition() << " " << xTransition->getSubtype() ); - OSL_FAIL( - "createShapeTransitionByType(): Unknown type/subtype " - "combination encountered" ); } return pGeneratedActivity; diff --git a/slideshow/source/engine/usereventqueue.cxx b/slideshow/source/engine/usereventqueue.cxx index d221de285a0c..9db191331c11 100644 --- a/slideshow/source/engine/usereventqueue.cxx +++ b/slideshow/source/engine/usereventqueue.cxx @@ -558,11 +558,9 @@ UserEventQueue::~UserEventQueue() // unregister all handlers clear(); } - catch (uno::Exception &) { - OSL_FAIL( OUStringToOString( - comphelper::anyToString( - cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 ).getStr() ); + catch (const uno::Exception&) + { + SAL_WARN( "slideshow", "" << comphelper::anyToString(cppu::getCaughtException() ) ); } } |