diff options
author | Nils Fuhrmann <nf@openoffice.org> | 2000-11-15 11:29:30 +0000 |
---|---|---|
committer | Nils Fuhrmann <nf@openoffice.org> | 2000-11-15 11:29:30 +0000 |
commit | 17ccc0bdcae91bfc75b0351334e5852db7142abd (patch) | |
tree | 50b660a4febec5b10cc7bbe79eac40a2ac88e2bb | |
parent | 4e8a357e942a9cdff0fd31aa4f824360fc08a980 (diff) |
Fix: COrrect local ids when exporting item/string lists.
-rw-r--r-- | transex3/source/export.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/transex3/source/export.cxx b/transex3/source/export.cxx index 051dfbcc6bb3..9e5eeca3967c 100644 --- a/transex3/source/export.cxx +++ b/transex3/source/export.cxx @@ -2,9 +2,9 @@ * * $RCSfile: export.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: nf $ $Date: 2000-11-14 11:41:46 $ + * last change: $Author: nf $ $Date: 2000-11-15 12:29:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1418,7 +1418,7 @@ BOOL Export::WriteExportList( ResData *pResData, ExportList *pExportList, sTimeStamp += ByteString::CreateFromInt32( aTime.GetSec()); for ( ULONG i = 0; i < pExportList->Count(); i++ ) { - ByteString sLID( i + 1 ); + ByteString sLID( ByteString::CreateFromInt64( i + 1 )); ExportListEntry *pEntry = pExportList->GetObject( i ); for ( USHORT j = 0; j < LANGUAGES; j++ ) { if ( LANGUAGE_ALLOWED( j )) { |