summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-06 13:17:10 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-06 13:30:33 +0100
commita4008f30934534571ce978fc874448a5cd08855d (patch)
tree31ea56bd416e8d114f5bb5dd9c658295798db22c /comphelper
parentbd24a310be1459510b760b812838cb87923853c5 (diff)
Correct OSL_DEBUG_LEVEL usage
- remove values greater than 2 - move level 1 for debug_printf() to level 2 as it's user defined output and it gets defined at level 2 in salframe.cxx for example.
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/mediadescriptor.cxx b/comphelper/source/misc/mediadescriptor.cxx
index a9be31ae2d1b..1aba6e820e10 100644
--- a/comphelper/source/misc/mediadescriptor.cxx
+++ b/comphelper/source/misc/mediadescriptor.cxx
@@ -598,7 +598,7 @@ sal_Bool MediaDescriptor::impl_addInputStream( sal_Bool bLockFile )
::rtl::OUString sNormalizedURL = impl_normalizeURL( sURL );
return impl_openStreamWithURL( sNormalizedURL, bLockFile );
}
-#if OSL_DEBUG_LEVEL>0
+#if OSL_DEBUG_LEVEL > 0
catch(const css::uno::Exception& ex)
{
::rtl::OUStringBuffer sMsg(256);