From 67baa5e71ab369f9c43a1f3ceffcd8cdc14ca2d0 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Sat, 26 Feb 2011 10:31:21 +0100 Subject: Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg) --- sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd') diff --git a/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx b/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx index 7b043564851c..ac26e8c89fa7 100644 --- a/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx +++ b/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx @@ -223,12 +223,12 @@ void QueueProcessor::ProcessOneRequest ( catch (::com::sun::star::uno::RuntimeException &aException) { (void) aException; - OSL_ASSERT("RuntimeException caught in QueueProcessor"); + OSL_FAIL("RuntimeException caught in QueueProcessor"); } catch (::com::sun::star::uno::Exception &aException) { (void) aException; - OSL_ASSERT("Exception caught in QueueProcessor"); + OSL_FAIL("Exception caught in QueueProcessor"); } } -- cgit