summaryrefslogtreecommitdiff
path: root/sc/source/filter/qpro
diff options
context:
space:
mode:
authorRohan Kumar <rohankanojia420@gmail.com>2016-03-05 00:23:12 +0530
committerEike Rathke <erack@redhat.com>2016-03-04 20:10:56 +0000
commit5f164b6e01496655ee0616e16d251e066d99ea73 (patch)
treecc4bf7cc772f14a208030804ea4fc5f7ccb26d90 /sc/source/filter/qpro
parent6381d26d73c614681601fda4a49c96e11a0e6f06 (diff)
tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals
I made small changes to disable some test code conditionally by adding a few new debug macros. Change-Id: Ieaf6f1b29343fb896cc64163a116c629165e8db3 Reviewed-on: https://gerrit.libreoffice.org/22711 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/source/filter/qpro')
-rw-r--r--sc/source/filter/qpro/biff.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/qpro/biff.cxx b/sc/source/filter/qpro/biff.cxx
index a23f578f4c9b..0e871a0e303a 100644
--- a/sc/source/filter/qpro/biff.cxx
+++ b/sc/source/filter/qpro/biff.cxx
@@ -66,7 +66,7 @@ bool ScBiffReader::nextRecord()
mpStream->ReadUInt16( mnId ).ReadUInt16( mnLength );
mnOffset = mpStream->Tell();
-#if OSL_DEBUG_LEVEL > 1
+#ifdef DEBUG_SC_QPRO
fprintf( stderr, "Read record 0x%x length 0x%x at offset 0x%x\n",
(unsigned)mnId, (unsigned)mnLength, (unsigned)mnOffset );