summaryrefslogtreecommitdiff
path: root/soldep
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-04-24 10:18:48 +0000
committerOliver Bolte <obo@openoffice.org>2006-04-24 10:18:48 +0000
commit76003a516c8ffa4fe2b275d3bf22bfbf71811691 (patch)
tree0b1e2f429455f19d7af92b507cc7e4f33c776a3a /soldep
parent6027506876a280aad8464ac545d78624a72ac36c (diff)
unxlngi6 parse problem
Diffstat (limited to 'soldep')
-rw-r--r--soldep/source/depper.cxx7
-rw-r--r--soldep/source/soldep.cxx7
2 files changed, 8 insertions, 6 deletions
diff --git a/soldep/source/depper.cxx b/soldep/source/depper.cxx
index ce500b708766..92f327969961 100644
--- a/soldep/source/depper.cxx
+++ b/soldep/source/depper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: depper.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: obo $ $Date: 2006-04-20 15:15:01 $
+ * last change: $Author: obo $ $Date: 2006-04-24 11:18:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -534,7 +534,8 @@ ULONG Depper::HandleNewDirectoryDialog(ByteString &rBodyText)
sTokenLine += String( "NULL", RTL_TEXTENCODING_UTF8 );
- mpStarWriter->InsertTokenLine( ByteString( sTokenLine, RTL_TEXTENCODING_UTF8 ));
+ ByteString bsTokenLine = ByteString( sTokenLine, RTL_TEXTENCODING_UTF8 );
+ mpStarWriter->InsertTokenLine( bsTokenLine );
if ( aNewDirectoryDlg.maEDeps.GetText() != String( "", RTL_TEXTENCODING_UTF8 ))
{
diff --git a/soldep/source/soldep.cxx b/soldep/source/soldep.cxx
index 52f86f5c446b..ed9661c22bff 100644
--- a/soldep/source/soldep.cxx
+++ b/soldep/source/soldep.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: soldep.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2006-04-20 15:15:01 $
+ * last change: $Author: obo $ $Date: 2006-04-24 11:18:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -489,7 +489,8 @@ ULONG SolDep::GetStartPrj(SolIdMapper* pIdMapper, ObjectList* pObjList)
MyHashObject* pHObject = mpPrjIdMapper->Find( ByteString( "null" ) ); //null_dir
if ( !pHObject )
{
- ULONG nObjectId = AddPrjObject( ByteString("null"), FALSE); //null_dir
+ ByteString bsNull("null");
+ ULONG nObjectId = AddPrjObject( bsNull, FALSE); //null_dir
return nObjectId;
}
else