summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-20 11:45:23 +0200
committerNoel Grandin <noel@peralex.com>2013-11-20 13:56:07 +0200
commitd894fee80e40519cb579987b95cb3d19345dfa71 (patch)
treef0b91e37171f4123d3528b681613c99f34509d2e /svx
parent5112f6a6c6e4cd76045f31e269a679b50dc83fb2 (diff)
remove RTL_CONSTASCII_STRINGPARAM in OStringBuffer constructor
Convert code like: OStringBuffer aKeyName(RTL_CONSTASCII_STRINGPARAM("NDX")); to: OStringBuffer aKeyName("NDX"); which compiles down to the same code Change-Id: If9c96a290bc18cc8285fb733f27be58c6958b63c
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index fe0a540e18d3..b0cf71e213e1 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -276,8 +276,7 @@ SdrModel::~SdrModel()
#ifdef DBG_UTIL
if(pAktUndoGroup)
{
- OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM(
- "In the Dtor of the SdrModel there is an open Undo left: \""));
+ OStringBuffer aStr("In the Dtor of the SdrModel there is an open Undo left: \"");
aStr.append(OUStringToOString(pAktUndoGroup->GetComment(), osl_getThreadTextEncoding()))
.append('\"');
OSL_FAIL(aStr.getStr());