diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2017-06-12 22:08:55 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-06-23 21:09:41 +0200 |
commit | c9b9224018c5a6acc9b6790db0f321fb8913f8ff (patch) | |
tree | 6a10289765b12611484c782d7c732605deedccea /l10ntools/inc | |
parent | eccca2010bb452380cc16cee5e882ef002057a42 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/xmlparse.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
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<XMLAttributeList> 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 |