diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-11-24 00:52:00 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-11-24 00:52:00 +0100 |
commit | 279a176397623ea83e98fac5a7f4132325b42594 (patch) | |
tree | ca21478406b36b744b80a105b3d6570214d98821 /sw/inc/SwNumberTree.hxx | |
parent | 0215f8b19451ab67c7fdaf91f2da8298a9b89c47 (diff) |
sw: replace abuses of OSL_DEBUG_LEVEL with DBG_UTIL
OSL_DEBUG_LEVEL is set by make debug=t, which should never result in ABI
incompatible objects.
Diffstat (limited to 'sw/inc/SwNumberTree.hxx')
-rw-r--r-- | sw/inc/SwNumberTree.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/SwNumberTree.hxx b/sw/inc/SwNumberTree.hxx index c9a8979aea97..4775f2012ab4 100644 --- a/sw/inc/SwNumberTree.hxx +++ b/sw/inc/SwNumberTree.hxx @@ -347,7 +347,7 @@ public: */ const SwNumberTreeNode* GetPrecedingNodeOf( const SwNumberTreeNode& rNode ) const; -#if OSL_DEBUG_LEVEL > 1 +#ifdef DBG_UTIL static unsigned long GetInstances(); unsigned long GetSerial(); #endif @@ -450,16 +450,16 @@ protected: */ mutable tSwNumberTreeChildren::const_iterator mItLastValid; -#if OSL_DEBUG_LEVEL > 1 +#ifdef DBG_UTIL /** Counter for the number of created instances. */ - static unsigned long nInstances; + static unsigned long s_nInstances; /** Serial number. */ - unsigned long mnSerial; + unsigned long m_nSerial; #endif SwNumberTreeNode(const SwNumberTreeNode& ); |