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