summaryrefslogtreecommitdiff
path: root/l10ntools/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-18 09:01:15 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-01-18 08:37:10 +0000
commitaa6c54f337a616c9ca6a39cfc8708657018d8613 (patch)
tree8160f15358286e611441bafe736c95f1238f4b60 /l10ntools/source
parent0533b155354f086aa8dc1de06c7db92d3f3be4f5 (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/source')
-rw-r--r--l10ntools/source/merge.cxx8
1 files changed, 3 insertions, 5 deletions
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 );
}