From 75d38d0735f17549da5e4ec038f97478236c3048 Mon Sep 17 00:00:00 2001 From: Cédric Bosdonnat Date: Wed, 9 Nov 2011 09:57:58 +0100 Subject: sw: fixed the dbglevel>1 build: GetBuffer() -> getStr() --- sw/source/core/doc/dbgoutsw.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source') diff --git a/sw/source/core/doc/dbgoutsw.cxx b/sw/source/core/doc/dbgoutsw.cxx index 12edea05680d..d595b5171df4 100644 --- a/sw/source/core/doc/dbgoutsw.cxx +++ b/sw/source/core/doc/dbgoutsw.cxx @@ -106,15 +106,15 @@ SW_DLLPUBLIC const char * dbg_out(const String & aStr) aDbgOutResult = rtl::OUStringToOString(aStr, RTL_TEXTENCODING_ASCII_US); if (bDbgOutStdErr) - fprintf(stderr, "%s", aDbgOutResult.GetBuffer()); + fprintf(stderr, "%s", aDbgOutResult.getStr()); - return aDbgOutResult.GetBuffer(); + return aDbgOutResult.getStr(); } SW_DLLPUBLIC const char * dbg_out(const ::rtl::OUString & aStr) { aDbgOutResult = rtl::OUStringToOString(aStr, RTL_TEXTENCODING_ASCII_US); - return aDbgOutResult.GetBuffer(); + return aDbgOutResult.getStr(); } -- cgit