diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-01 10:39:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-01 13:30:59 +0100 |
commit | dd8060ddc418942d51bb07313546fe849aac9d39 (patch) | |
tree | 1a083a8d84458ff9d38c3120f437873cb4ae3bc9 /l10ntools | |
parent | af318eeb4e23694e17b09b902afb98ddf9da9b7b (diff) |
loplugin:finalclasses in h*,i*,j*
Change-Id: I3b5f319a88dbe6a9c2ffbfdf991345beda9a2fcd
Reviewed-on: https://gerrit.libreoffice.org/44154
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/inc/xmlparse.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx index 177af07dfc7a..8f485e9707eb 100644 --- a/l10ntools/inc/xmlparse.hxx +++ b/l10ntools/inc/xmlparse.hxx @@ -145,7 +145,7 @@ typedef std::unordered_map<OString, sal_Bool> TagMap; /** Holds information of a XML file, is root node of tree */ -class XMLFile : public XMLParentNode +class XMLFile final : public XMLParentNode { public: XMLFile( @@ -173,7 +173,7 @@ public: void SetName( const OString &rFilename ) { m_sFileName = rFilename; } const std::vector<OString>& getOrder() const { return m_vOrder; } -protected: +private: void InsertL10NElement( XMLElement* pElement); |