From c9b9224018c5a6acc9b6790db0f321fb8913f8ff Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Mon, 12 Jun 2017 22:08:55 +0200 Subject: Remove support for the oldref attribute in l10ntools Now that oldref and l10n attributes were removed from helpcontent in commit eb9ec1c794a0d3b8522375c7a87ac3ee999c8a66 we can as well drop support of these from l10ntools and xmlhelp Change-Id: Ib6fe30e93f0d7e976bb675beee9395ab543af99c Reviewed-on: https://gerrit.libreoffice.org/38715 Tested-by: Jenkins Reviewed-by: Andras Timar --- l10ntools/inc/xmlparse.hxx | 4 ---- 1 file changed, 4 deletions(-) (limited to 'l10ntools/inc') diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx index 22ec04469316..037a3843326a 100644 --- a/l10ntools/inc/xmlparse.hxx +++ b/l10ntools/inc/xmlparse.hxx @@ -203,7 +203,6 @@ private: OString m_sElementName; std::unique_ptr m_pAttributes; OString m_sId; - OString m_sOldRef; OString m_sLanguageId; int m_nPos; @@ -239,9 +238,6 @@ public: void SetId ( OString const & sTheId ) { m_sId = sTheId; } void SetLanguageId ( OString const & sLangId ) { m_sLanguageId = sLangId; } void SetPos ( int nPos ) { m_nPos = nPos; } - void SetOldRef ( OString const & sOldRef ) { m_sOldRef = sOldRef; } - - const OString& GetOldref() const { return m_sOldRef; } }; /** Holds character data -- cgit