summaryrefslogtreecommitdiff
path: root/l10ntools/source/merge.cxx
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2013-12-26 14:26:51 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2013-12-27 07:14:53 +0100
commit0dbd93b92a694a384b293e0dce87b5acdf12e9e8 (patch)
tree3552b29d5c1ced35bca348e08e8c5eff4cd439ee /l10ntools/source/merge.cxx
parent94da69d4898fb2dd30834a388a980a54039dea04 (diff)
Transex3: UIEntries list type is unused
This list type doesn't appear in the resource files and there are lots of alternatives (ItemList, StringList ...) for future need. Change-Id: Ia4454a329ba93f54e5b3ca45443a1a84be3b4bf7
Diffstat (limited to 'l10ntools/source/merge.cxx')
-rw-r--r--l10ntools/source/merge.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx
index 6752c7fb704c..befa5905bb34 100644
--- a/l10ntools/source/merge.cxx
+++ b/l10ntools/source/merge.cxx
@@ -76,7 +76,6 @@ ResData::ResData( const OString &rGId )
sGId( rGId ),
sTextTyp( "Text" ),
pStringList( NULL ),
- pUIEntries( NULL ),
pItemList( NULL ),
pFilterList( NULL ),
pPairedList( NULL )
@@ -98,7 +97,6 @@ ResData::ResData( const OString &rGId, const OString &rFilename)
sFilename( rFilename ),
sTextTyp( "Text" ),
pStringList( NULL ),
- pUIEntries( NULL ),
pItemList( NULL ),
pFilterList( NULL ),
pPairedList( NULL )
@@ -133,14 +131,6 @@ ResData::~ResData()
}
delete pItemList;
}
- if ( pUIEntries ) {
- // delete existing res. of type UIEntries
- for ( size_t i = 0; i < pUIEntries->size(); i++ ) {
- ExportListEntry* test = (*pUIEntries)[ i ];
- delete test;
- }
- delete pUIEntries;
- }
}
//