From a32bfdfd280b51d1bd5283243e286f056d3986dd Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Wed, 9 Mar 2016 19:17:44 +0530 Subject: tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I replaced OSL_DEBUG_LEVEL > 2 conditionals with OSL_DEBUG_LEVEL > 0 conditionals Change-Id: Ibfb3a4e00da7ef6a213dcd4659c7963935cfad1f Reviewed-on: https://gerrit.libreoffice.org/23081 Tested-by: Jenkins Reviewed-by: Björn Michaelsen --- shell/source/win32/simplemail/senddoc.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shell') diff --git a/shell/source/win32/simplemail/senddoc.cxx b/shell/source/win32/simplemail/senddoc.cxx index ace7303060ce..a17df2161114 100644 --- a/shell/source/win32/simplemail/senddoc.cxx +++ b/shell/source/win32/simplemail/senddoc.cxx @@ -33,7 +33,7 @@ #include #include -#if OSL_DEBUG_LEVEL > 2 +#if OSL_DEBUG_LEVEL > 0 void dumpParameter(); #endif @@ -248,7 +248,7 @@ int main(int argc, char* argv[]) initParameter(argc, argv); -#if OSL_DEBUG_LEVEL > 2 +#if OSL_DEBUG_LEVEL > 0 dumpParameter(); #endif @@ -300,7 +300,7 @@ int main(int argc, char* argv[]) return ulRet; } -#if OSL_DEBUG_LEVEL > 2 +#if OSL_DEBUG_LEVEL > 0 void dumpParameter() { std::ostringstream oss; -- cgit