diff options
author | Nils Fuhrmann <nf@openoffice.org> | 2002-04-30 12:55:58 +0000 |
---|---|---|
committer | Nils Fuhrmann <nf@openoffice.org> | 2002-04-30 12:55:58 +0000 |
commit | f9096e0537acb87fd8cc08d47fcc586cffef26ac (patch) | |
tree | 6552befc0130e5d034ce1c5224edf05c4375831c /transex3/source/lngmerge.cxx | |
parent | 6dd5e26b951217c7aa6b1dfbb11526af44c90791 (diff) |
Fixed upper case/lower case problem for usage of localize on UNIX systems. Solves problems of strings which could not be merged back because of not detectable files
Diffstat (limited to 'transex3/source/lngmerge.cxx')
-rw-r--r-- | transex3/source/lngmerge.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/transex3/source/lngmerge.cxx b/transex3/source/lngmerge.cxx index f12a571a2247..12f17170ebe8 100644 --- a/transex3/source/lngmerge.cxx +++ b/transex3/source/lngmerge.cxx @@ -2,9 +2,9 @@ * * $RCSfile: lngmerge.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: nf $ $Date: 2001-07-31 15:42:54 $ + * last change: $Author: nf $ $Date: 2002-04-30 13:55:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -151,7 +151,7 @@ BOOL LngParser::CreateSDF( ByteString sPrjEntry( aEntry.GetFull(), gsl_getSystemTextEncoding()); ByteString sActFileName( sFullEntry.Copy( sPrjEntry.Len() + 1 ), gsl_getSystemTextEncoding()); - sActFileName.ToLowerAscii(); +// sActFileName.ToLowerAscii(); sActFileName.SearchAndReplaceAll( "/", "\\" ); |