shell/source/win32/simplemail/senddoc.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a32bfdfd280b51d1bd5283243e286f056d3986dd
Author: Rohan Kumar <[email protected]>
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 <[email protected]>
    Reviewed-by: Björn Michaelsen <[email protected]>

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;
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to