summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-02 11:40:17 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-02 11:40:17 +0000
commit6b671a7c2df2c477f529a949784e258892753a36 (patch)
tree0065e2c671313ec57746f1376226443b8cdc0b6f
parentf8f339b56f87b97bea11a919399ecd6c5eba9622 (diff)
INTEGRATION: CWS canvas02 (1.4.8); FILE MERGED
2005/10/08 12:41:09 thb 1.4.8.2: RESYNC: (1.4-1.5); FILE MERGED 2005/08/19 11:01:16 thb 1.4.8.1: #i53538# Added line feed to OSL_TRACE (the version with string format needs explicit newlines)
-rw-r--r--canvas/inc/canvas/debug.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/canvas/inc/canvas/debug.hxx b/canvas/inc/canvas/debug.hxx
index c2ddc5fe38bb..21d348b6f5af 100644
--- a/canvas/inc/canvas/debug.hxx
+++ b/canvas/inc/canvas/debug.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: debug.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 23:04:39 $
+ * last change: $Author: kz $ $Date: 2005-11-02 12:40:17 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -126,7 +126,7 @@
::std::size_t find_unreachable_objects( bool );
#ifdef VERBOSE
-#define SHARED_PTR_LEFTOVERS(a) OSL_TRACE( "%s\n%s: Unreachable objects still use %d bytes", \
+#define SHARED_PTR_LEFTOVERS(a) OSL_TRACE( "%s\n%s: Unreachable objects still use %d bytes\n", \
BOOST_CURRENT_FUNCTION, a, \
find_unreachable_objects(true) )
#else
@@ -137,7 +137,7 @@
still contained in those objects, which quite possibly are prevented
from deletion by circular references.
*/
-#define SHARED_PTR_LEFTOVERS(a) OSL_TRACE( "%s\n%s: Unreachable objects still use %d bytes", \
+#define SHARED_PTR_LEFTOVERS(a) OSL_TRACE( "%s\n%s: Unreachable objects still use %d bytes\n", \
BOOST_CURRENT_FUNCTION, a, \
find_unreachable_objects(false) )
#endif