diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-04-05 08:11:29 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-04-05 08:14:03 +0300 |
commit | 7732ab4f7d913a5ec7d3b6acc0f101c31020c17c (patch) | |
tree | ecf216d44ee37fd54b500289ef4cff9838f028ab /l10ntools/source/treemerge.cxx | |
parent | 9473274d41e8645b9aa82e1ba5f2d2a41e2485b0 (diff) |
loplugin:staticanonymous
Change-Id: I4bf258c6db0d4994b4ffa2088c9963921a5e61fa
Diffstat (limited to 'l10ntools/source/treemerge.cxx')
-rw-r--r-- | l10ntools/source/treemerge.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/source/treemerge.cxx b/l10ntools/source/treemerge.cxx index b98b0621e952..978d393854c0 100644 --- a/l10ntools/source/treemerge.cxx +++ b/l10ntools/source/treemerge.cxx @@ -27,7 +27,7 @@ namespace { // Extract strings from nodes on all level recursively - static void lcl_ExtractLevel( + void lcl_ExtractLevel( const xmlDocPtr pSource, const xmlNodePtr pRoot, const xmlChar* pNodeName, PoOfstream& rPOStream ) { @@ -59,7 +59,7 @@ namespace } // Update id and content of the topic - static xmlNodePtr lcl_UpdateTopic( + xmlNodePtr lcl_UpdateTopic( const xmlNodePtr pCurrent, const OString& rXhpRoot ) { xmlNodePtr pReturn = pCurrent; @@ -139,7 +139,7 @@ namespace return pReturn; } // Localize title attribute of help_section and node tags - static void lcl_MergeLevel( + void lcl_MergeLevel( xmlDocPtr io_pSource, const xmlNodePtr pRoot, const xmlChar * pNodeName, MergeDataFile* pMergeDataFile, const OString& rLang, const OString& rXhpRoot ) |