diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-01-22 18:14:51 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-22 18:26:04 +0100 |
commit | 4ceba05995b9fafdc00896e3253f405299ff1066 (patch) | |
tree | 366e7c013cb811dcdaa21c1015be7267b8561e01 /sw | |
parent | ffd2cc342f4ba54feeecbd3d31632131b45886ef (diff) |
oox: kill no longer needed S() macro
Change-Id: If3f1bb787d6debaa63e3bed3a48e44b5e34c27b7
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 89a72bbadfbc..0031b7fa1566 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -1273,7 +1273,7 @@ bool DocxAttributeOutput::StartURL( const String& rUrl, const String& rTarget ) OUString osUrl( sUrl ); OString sId = rtl::OUStringToOString( GetExport().GetFilter().addRelation( m_pSerializer->getOutputStream(), - S( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" ), + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink", osUrl, true ), RTL_TEXTENCODING_UTF8 ); m_pHyperlinkAttrList->add( FSNS( XML_r, XML_id), sId.getStr()); @@ -2078,7 +2078,7 @@ void DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* pGrfNode, const Size // TODO Convert the file name to relative for better interoperability aRelId = m_rExport.AddRelation( - S( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" ), + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image", OUString( aFileName ) ); nImageType = XML_link; |