diff options
author | Andras Timar <atimar@suse.com> | 2012-09-28 13:57:36 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-09-28 14:01:34 +0200 |
commit | 8b97644bab0e9106b798a5b8969aa796e558ef3f (patch) | |
tree | 190b3bbe2fbf2699674af90114f06f7cdb809cb7 /l10ntools/source/helpmerge.cxx | |
parent | e05baffff1446b1d65f0cb84130b060241065da8 (diff) |
Revert "fdo#52246 let helpex use gsicheck's tag checker"
This reverts commit e3b927787f3643f9e584cc80c974d5f907a94858.
There will be a better solution in feature/killsdf soon.
Conflicts:
l10ntools/inc/gsicheck.hxx
l10ntools/source/gsicheck.cxx
l10ntools/source/gsimain.cxx
Change-Id: I5d12f4ee069d7024345d78c45fb1587cb006c922
Diffstat (limited to 'l10ntools/source/helpmerge.cxx')
-rw-r--r-- | l10ntools/source/helpmerge.cxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index cbf38fb9e809..2d4435c5e74c 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -52,7 +52,6 @@ #include "common.hxx" #include "helper.hxx" -#include "gsicheck.hxx" #if OSL_DEBUG_LEVEL > 2 void HelpParser::Dump(XMLHashMap* rElem_in) @@ -396,12 +395,9 @@ void HelpParser::ProcessHelp( LangHashMap* aLangHM , const rtl::OString& sCur , { if( pXMLElement != NULL ) { - if (check(pEntrys->GetSDF(sCur),pEntrys->GetNLine(sCur))) - { - data = new XMLData( sNewdata , NULL , true ); // Add new one - pXMLElement->RemoveAndDeleteAllChildren(); - pXMLElement->AddChild( data ); - } + data = new XMLData( sNewdata , NULL , true ); // Add new one + pXMLElement->RemoveAndDeleteAllChildren(); + pXMLElement->AddChild( data ); aLangHM->erase( sCur ); } } |