summaryrefslogtreecommitdiff
path: root/l10ntools/source/merge.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/merge.cxx')
-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 );
}