diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2010-06-11 12:03:49 +0200 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2010-06-11 12:03:49 +0200 |
commit | 4c6fe53ca705e6ef76041b08cb19008a4d5f24df (patch) | |
tree | 2bea6a0a42bc5b7c5e9f6e8e1a1f079b46157777 /l10ntools/source | |
parent | a30f502388f8ba9346626c0d2b8dd67ff9fc8a28 (diff) |
consolidatereadme: don't extract empty strings
Diffstat (limited to 'l10ntools/source')
-rw-r--r-- | l10ntools/source/xrmmerge.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/l10ntools/source/xrmmerge.cxx b/l10ntools/source/xrmmerge.cxx index 6e87cf8af8eb..b77f75ea04e5 100644 --- a/l10ntools/source/xrmmerge.cxx +++ b/l10ntools/source/xrmmerge.cxx @@ -605,7 +605,8 @@ void XRMResExport::EndOfText( sOutput.SearchAndReplaceAll( sSearch, "_" ); //if( !sCur.EqualsIgnoreCaseAscii("de") ||( sCur.EqualsIgnoreCaseAscii("de") && !Export::isMergingGermanAllowed( sPrj ) ) ) - pOutputStream->WriteLine( sOutput ); + if( sAct.Len() > 1 ) + pOutputStream->WriteLine( sOutput ); } } delete pResData; |