summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-15 12:26:28 +0200
committerMichael Stahl <mstahl@redhat.com>2016-12-15 16:20:54 +0000
commit690cf2a5ac87d3d05c45a86944e7f6b0adf12cf2 (patch)
treeda6e4bc5b8ca99192ba7c49e18bf710ffce72277 /slideshow
parentf0804905ec38cdf3a5af1ebe5b087809d2850ccd (diff)
no point in having both SAL_WARN and OSL_FAIL for the same thing
Change-Id: I1beafff257e968a62184f8b1d8cf2a3a24e7c945 Reviewed-on: https://gerrit.libreoffice.org/32039 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/animationfactory.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/slideshow/source/engine/animationfactory.cxx b/slideshow/source/engine/animationfactory.cxx
index 0d04f040e4e5..c27f7d57a235 100644
--- a/slideshow/source/engine/animationfactory.cxx
+++ b/slideshow/source/engine/animationfactory.cxx
@@ -678,7 +678,6 @@ namespace slideshow
if( !rAny.hasValue() )
{
- OSL_FAIL( "getDefault(): cannot get requested shape property" );
SAL_WARN("slideshow", "getDefault(): cannot get shape property " << rPropertyName );
return ValueType();
}
@@ -688,7 +687,6 @@ namespace slideshow
if( !(rAny >>= aValue) )
{
- OSL_FAIL( "getDefault(): cannot extract requested shape property" );
SAL_WARN("slideshow", "getDefault(): cannot extract shape property " << rPropertyName);
return ValueType();
}
@@ -705,7 +703,6 @@ namespace slideshow
if( !rAny.hasValue() )
{
- OSL_FAIL( "getDefault(): cannot get requested shape color property" );
SAL_WARN("slideshow", "getDefault(): cannot get shape color property " << rPropertyName);
return RGBColor();
}
@@ -715,7 +712,6 @@ namespace slideshow
if( !(rAny >>= nValue) )
{
- OSL_FAIL( "getDefault(): cannot extract requested shape color property" );
SAL_INFO("slideshow", "getDefault(): cannot extract shape color property " << rPropertyName);
return RGBColor();
}