diff options
Diffstat (limited to 'oox/source/ppt/commonbehaviorcontext.cxx')
-rw-r--r-- | oox/source/ppt/commonbehaviorcontext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/ppt/commonbehaviorcontext.cxx b/oox/source/ppt/commonbehaviorcontext.cxx index 4ba40925a7e2..ca0a0c9ec7ac 100644 --- a/oox/source/ppt/commonbehaviorcontext.cxx +++ b/oox/source/ppt/commonbehaviorcontext.cxx @@ -83,9 +83,9 @@ namespace oox::ppt { if(msCurrentAttribute.equalsAscii( attrConv->mpMSName ) ) { Attribute attr; - attr.name = OUString::intern( attrConv->mpAPIName, - strlen(attrConv->mpAPIName), - RTL_TEXTENCODING_ASCII_US ); + attr.name = OUString( attrConv->mpAPIName, + strlen(attrConv->mpAPIName), + RTL_TEXTENCODING_ASCII_US ); attr.type = attrConv->meAttribute; maAttributes.push_back( attr ); SAL_INFO("oox.ppt", "OOX: attrName is " << msCurrentAttribute << " -> " << attrConv->mpAPIName ); |