diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-18 09:01:15 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-01-18 08:37:10 +0000 |
commit | aa6c54f337a616c9ca6a39cfc8708657018d8613 (patch) | |
tree | 8160f15358286e611441bafe736c95f1238f4b60 /l10ntools | |
parent | 0533b155354f086aa8dc1de06c7db92d3f3be4f5 (diff) |
loplugin:unusedfields
Change-Id: I321b594f1190cdd997b4769161e1c02d31f46213
Reviewed-on: https://gerrit.libreoffice.org/21566
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/inc/export.hxx | 3 | ||||
-rw-r--r-- | l10ntools/source/merge.cxx | 8 |
2 files changed, 4 insertions, 7 deletions
diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx index 7afc931c6ecb..37188105b84d 100644 --- a/l10ntools/inc/export.hxx +++ b/l10ntools/inc/export.hxx @@ -287,14 +287,13 @@ class MergeData friend class MergeDataHashMap; public: - OString sTyp; OString sGID; OString sLID; MergeEntrys* pMergeEntrys; private: MergeDataHashMap::iterator m_aNextData; public: - MergeData( const OString &rTyp, const OString &rGID, const OString &rLID ); + MergeData( const OString &rGID, const OString &rLID ); ~MergeData(); MergeEntrys* GetMergeEntries() { return pMergeEntrys;} diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx index 634621616f44..8be78d0e663c 100644 --- a/l10ntools/source/merge.cxx +++ b/l10ntools/source/merge.cxx @@ -190,11 +190,9 @@ MergeDataHashMap::iterator MergeDataHashMap::find(const OString& rKey) // class MergeData -MergeData::MergeData( - const OString &rTyp, const OString &rGID, +MergeData::MergeData(const OString &rGID, const OString &rLID ) - : sTyp( rTyp ), - sGID( rGID ), + : sGID( rGID ), sLID( rLID ) , pMergeEntrys( new MergeEntrys() ) { @@ -403,7 +401,7 @@ void MergeDataFile::InsertEntry( if( !pData ) { - pData = new MergeData( rTYP, rGID, rLID ); + pData = new MergeData( rGID, rLID ); aMap.insert( sKey, pData ); } |