summaryrefslogtreecommitdiff
path: root/sal/rtl
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-25 15:20:25 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-25 15:20:25 +0000
commit97a46e612c34b8d329a5abd9714dbf69575184fe (patch)
tree900f40b70b1308d9e61873d504694acc8447b1a2 /sal/rtl
parent54fb2127fb4e9338cb0e82a60a28f9fe6b80c742 (diff)
INTEGRATION: CWS cmcfixes31 (1.4.54); FILE MERGED
2007/01/11 14:30:25 cmc 1.4.54.1: #i73272# add some new dbg_dump helpers
Diffstat (limited to 'sal/rtl')
-rw-r--r--sal/rtl/source/debugprint.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/sal/rtl/source/debugprint.cxx b/sal/rtl/source/debugprint.cxx
index 2fb17d75de95..a33498ae522f 100644
--- a/sal/rtl/source/debugprint.cxx
+++ b/sal/rtl/source/debugprint.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: debugprint.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 09:04:51 $
+ * last change: $Author: obo $ $Date: 2007-01-25 16:20:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -53,4 +53,14 @@ const sal_Char *dbg_dump(const rtl::OUString &rStr)
return dbg_dump(rtl::OUStringToOString(rStr, RTL_TEXTENCODING_UTF8));
}
+const sal_Char *dbg_dump(rtl_String *pStr)
+{
+ return dbg_dump(rtl::OString(pStr));
+}
+
+const sal_Char *dbg_dump(rtl_uString *pStr)
+{
+ return dbg_dump(rtl::OUString(pStr));
+}
+
/* vi:set tabstop=4 shiftwidth=4 expandtab: */