summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-03-05 23:18:40 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-03-05 23:38:22 +0900
commite0bff79ab235d6a9eaf7f34f1e423c1b0cbcf39e (patch)
tree7cf8478dfaf259f3994390e304b284f978f95313 /l10ntools
parente2fbf6391c8ce185d875bf36075e5b2de67cff79 (diff)
Removed unused field bGerman
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/cfgmerge.hxx1
-rw-r--r--l10ntools/source/cfgmerge.cxx6
2 files changed, 0 insertions, 7 deletions
diff --git a/l10ntools/inc/cfgmerge.hxx b/l10ntools/inc/cfgmerge.hxx
index d68984eed564..4b13a12bb290 100644
--- a/l10ntools/inc/cfgmerge.hxx
+++ b/l10ntools/inc/cfgmerge.hxx
@@ -193,7 +193,6 @@ private:
std::vector<ByteString> aLanguages;
ResData *pResData;
- BOOL bGerman;
ByteString sFilename;
BOOL bEnglish;
diff --git a/l10ntools/source/cfgmerge.cxx b/l10ntools/source/cfgmerge.cxx
index 2f7cff93d51d..edf369889342 100644
--- a/l10ntools/source/cfgmerge.cxx
+++ b/l10ntools/source/cfgmerge.cxx
@@ -700,7 +700,6 @@ void CfgExport::WorkOnRessourceEnd()
sOutput += sText; sOutput += "\t\t\t\t";
sOutput += sTimeStamp;
- //if( !sCur.EqualsIgnoreCaseAscii("de") ||( sCur.EqualsIgnoreCaseAscii("de") && !Export::isMergingGermanAllowed( sPrj ) ) )
pOutputStream->WriteLine( sOutput );
}
}
@@ -730,7 +729,6 @@ CfgMerge::CfgMerge(
: CfgOutputParser( rOutputFile ),
pMergeDataFile( NULL ),
pResData( NULL ),
- bGerman( FALSE ),
sFilename( rFilename ),
bEnglish( FALSE )
{
@@ -781,8 +779,6 @@ void CfgMerge::WorkOnText(
pResData->sResTyp = pStackData->sResTyp;
}
- //if ( nLangIndex.EqualsIgnoreCaseAscii("de") )
- // bGerman = TRUE;
if (( nLangIndex.EqualsIgnoreCaseAscii("en-US") ))
bEnglish = TRUE;
@@ -834,7 +830,6 @@ void CfgMerge::WorkOnRessourceEnd()
ByteString sContent;
pEntrys->GetText( sContent, STRING_TYP_TEXT, sCur , TRUE );
if (
- // (!sCur.EqualsIgnoreCaseAscii("de") ) &&
( !sCur.EqualsIgnoreCaseAscii("en-US") ) &&
( sContent != "-" ) && ( sContent.Len()))
@@ -874,7 +869,6 @@ void CfgMerge::WorkOnRessourceEnd()
}
delete pResData;
pResData = NULL;
- bGerman = FALSE;
bEnglish = FALSE;
}