summaryrefslogtreecommitdiff
path: root/l10ntools/source
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2013-12-26 14:34:15 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2013-12-27 07:14:54 +0100
commitda989b523e6eb960722eb8de6babca534f54a350 (patch)
tree5c82277a3db966de48c6b8af23355eed66fb5f8d /l10ntools/source
parentedf7d340eb8d78cb99941cc28e23928d05697b10 (diff)
Transex3: remove unused text types
Change-Id: Iad98aae685153589ff72a4be2ec704c0d311e1fd
Diffstat (limited to 'l10ntools/source')
-rw-r--r--l10ntools/source/export.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 7df459af13fc..f1d55acc58a9 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -622,11 +622,7 @@ int Export::Execute( int nToken, const char * pToken )
if ( !sText.isEmpty() && !sLang.isEmpty() )
{
sKey = sKey.toAsciiUpperCase();
- if (sKey == "TEXT" ||
- sKey == "MESSAGE" ||
- sKey == "CUSTOMUNITTEXT" ||
- sKey == "SLOTNAME" ||
- sKey == "UINAME")
+ if (sKey == "TEXT" || sKey == "MESSAGE" || sKey == "CUSTOMUNITTEXT")
{
SetChildWithText();
if ( sLangIndex.equalsIgnoreAsciiCase("en-US") )
@@ -676,12 +672,6 @@ int Export::Execute( int nToken, const char * pToken )
pResData->sTitle[ sLangIndex ] = sText;
}
}
- else if ( sKey == "ACCESSPATH" ) {
- pResData->SetId( sText, ID_LEVEL_ACCESSPATH );
- }
- else if ( sKey == "FIELDNAME" ) {
- pResData->SetId( sText, ID_LEVEL_FIELDNAME );
- }
}
}
break;