diff options
author | Rohan Kumar <rohankanojia420@gmail.com> | 2016-03-09 19:17:44 +0530 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2016-03-11 11:45:15 +0000 |
commit | a32bfdfd280b51d1bd5283243e286f056d3986dd (patch) | |
tree | 789207846cc6683463a54e0c22ddd3090e61387b /shell | |
parent | 30b9c6a457de61f3c94431ecc75716f866c3379e (diff) |
tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals
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 <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/simplemail/senddoc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <sstream> #include <stdexcept> -#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; |