[Libreoffice-commits] core.git: shell/source
Rohan Kumar
rohankanojia420 at gmail.com
Fri Mar 11 11:45:38 UTC 2016
shell/source/win32/simplemail/senddoc.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit a32bfdfd280b51d1bd5283243e286f056d3986dd
Author: Rohan Kumar <rohankanojia420 at gmail.com>
Date: Wed Mar 9 19:17:44 2016 +0530
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 at libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen at canonical.com>
diff --git a/shell/source/win32/simplemail/senddoc.cxx b/shell/source/win32/simplemail/senddoc.cxx
index ace7303..a17df21 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;
More information about the Libreoffice-commits
mailing list