From 856cf7115d7b52f38371047b4a1aeae747a5d9bc Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Mon, 7 Mar 2016 23:28:39 +0530 Subject: tdf#91794 Remove OSL_DEBUG_LEVEL > 1 conditionals I removed OSL_DEBUG_LEVEL > 1 conditionals in order to reduce debug levels. Change-Id: Ia1890277aec8ba0b57e325564a107d7fe2f6e967 Reviewed-on: https://gerrit.libreoffice.org/23008 Tested-by: Jenkins Reviewed-by: jan iversen --- i18npool/inc/transliterationImpl.hxx | 2 +- i18npool/source/transliteration/transliterationImpl.cxx | 2 +- i18npool/source/transliteration/transliteration_body.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'i18npool') diff --git a/i18npool/inc/transliterationImpl.hxx b/i18npool/inc/transliterationImpl.hxx index e50b63abb22d..0c0fd5a07267 100644 --- a/i18npool/inc/transliterationImpl.hxx +++ b/i18npool/inc/transliterationImpl.hxx @@ -28,7 +28,7 @@ namespace com { namespace sun { namespace star { namespace i18n { -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 #define RETURN_DEBUG_STRING ("return from transliterationImpl"); #define RETURN_DEBUG_NUMBER 'TRAN' #else diff --git a/i18npool/source/transliteration/transliterationImpl.cxx b/i18npool/source/transliteration/transliterationImpl.cxx index 287d2cea70f2..abe434cc3fe8 100644 --- a/i18npool/source/transliteration/transliterationImpl.cxx +++ b/i18npool/source/transliteration/transliterationImpl.cxx @@ -35,7 +35,7 @@ #include -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 #include #endif diff --git a/i18npool/source/transliteration/transliteration_body.cxx b/i18npool/source/transliteration/transliteration_body.cxx index 875b4a150d60..2730e9d77e3c 100644 --- a/i18npool/source/transliteration/transliteration_body.cxx +++ b/i18npool/source/transliteration/transliteration_body.cxx @@ -301,7 +301,7 @@ static OUString transliterate_titlecase_Impl( pOffset[i] = nIdx; } } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 const sal_Int32 *pCOffset = offset.getConstArray(); (void) pCOffset; #endif -- cgit