diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-11-16 20:48:19 +0100 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-11-16 20:48:19 +0100 |
commit | aea2dbc319e1e1069d3af4bbc828eb0001cd6ece (patch) | |
tree | 8ee3f4d636082c7d4df8630b8a9169da427d20b5 /sw/source | |
parent | db686e8ae12e4c554e24d0c262915fb1bf45525b (diff) |
Remove now useless setTextEmbeddedGraphicURL()
Since this commit:
286e2f5c6ec829bc0987b1be7016699f7ef03e5e
it's not necessary to update the package URL.
Change-Id: I25c829e9bc0c666838baf19cd60f19938ebb430c
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/xml/xmltexte.cxx | 22 | ||||
-rw-r--r-- | sw/source/filter/xml/xmltexte.hxx | 5 |
2 files changed, 0 insertions, 27 deletions
diff --git a/sw/source/filter/xml/xmltexte.cxx b/sw/source/filter/xml/xmltexte.cxx index c830e1df5088..79ea895a69d3 100644 --- a/sw/source/filter/xml/xmltexte.cxx +++ b/sw/source/filter/xml/xmltexte.cxx @@ -188,28 +188,6 @@ SwXMLTextParagraphExport::~SwXMLTextParagraphExport() { } -void SwXMLTextParagraphExport::setTextEmbeddedGraphicURL( - const Reference < XPropertySet >& rPropSet, - OUString& rURL) const -{ - if( rURL.isEmpty() ) - return; - - SwGrfNode *pGrfNd = GetNoTxtNode( rPropSet )->GetGrfNode(); - if (pGrfNd && !pGrfNd->IsGrfLink()) - { - // Apply new embedded stream name, only if graphic node already has one. - // - The saving of recovery information triggers this method, but for a newly created - // document the new embedded stream name shall not be applied. - // - The saving of a newly created document to own format (ODF) triggers this method, - // but the embedded stream name is not needed as its original inserted data is still in use. - if (pGrfNd->HasEmbeddedStreamName()) - { - pGrfNd->ApplyNewEmbeddedStreamName("vnd.sun.star.Package:" + rURL); - } - } -} - static void lcl_addURL ( SvXMLExport &rExport, const OUString &rURL, bool bToRel = true ) { diff --git a/sw/source/filter/xml/xmltexte.hxx b/sw/source/filter/xml/xmltexte.hxx index cb007465a77d..17f45d966113 100644 --- a/sw/source/filter/xml/xmltexte.hxx +++ b/sw/source/filter/xml/xmltexte.hxx @@ -69,11 +69,6 @@ public: SwXMLExport& rExp, SvXMLAutoStylePoolP& rAutoStylePool ); virtual ~SwXMLTextParagraphExport(); - - virtual void setTextEmbeddedGraphicURL( - const ::com::sun::star::uno::Reference < - ::com::sun::star::beans::XPropertySet >& rPropSet, - OUString& rStreamName ) const SAL_OVERRIDE; }; #endif // INCLUDED_SW_SOURCE_FILTER_XML_XMLTEXTE_HXX |