[Libreoffice-commits] .: sd/source

Thomas Arnhold tarnhold at kemper.freedesktop.org
Sat Feb 26 01:39:19 PST 2011


 sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 42baf8646cd41e1b51ceab963e3ee44420a73c3b
Author: Thomas Arnhold <thomas at arnhold.org>
Date:   Sat Feb 26 10:31:21 2011 +0100

    Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)

diff --git a/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx b/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx
index 823cc02..cfa6cf8 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");
     }
 }
 


More information about the Libreoffice-commits mailing list