summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-26 10:31:21 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-26 10:31:21 +0100
commit67baa5e71ab369f9c43a1f3ceffcd8cdc14ca2d0 (patch)
tree57657310e318640b509c0143b88d9a62c1e0236a /sd
parentacab64bd1d6ea2462d12723dee8774ab66382597 (diff)
Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx4
1 files changed, 2 insertions, 2 deletions
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");
}
}