summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-02-26 12:47:51 +0000
committerKurt Zenker <kz@openoffice.org>2004-02-26 12:47:51 +0000
commit42051ab3dece0332cd2dce766ad9065b1457d9f4 (patch)
tree0d56c39f233551f6c27e8a3e8b69c76b8eee652b /idl
parentd7a89843b30344fcb2ed693805ffc5f92df3ae4d (diff)
INTEGRATION: CWS sb13 (1.1.1.1.96); FILE MERGED
2004/02/06 08:29:18 sb 1.1.1.1.96.1: #i19699# Adapted to tightened tools/string.hxx.
Diffstat (limited to 'idl')
-rw-r--r--idl/source/prj/database.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index ec47b5d73530..2670946b83cf 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: database.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:30:41 $
+ * last change: $Author: kz $ $Date: 2004-02-26 13:47:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -883,9 +883,9 @@ void SvIdlDataBase::WriteError( SvTokenStream & rInStm )
// Fehlerposition
aErrorText += "> at ( ";
- aErrorText += aError.nLine;
+ aErrorText += ByteString::CreateFromInt64(aError.nLine);
aErrorText += ", ";
- aErrorText += aError.nColumn;
+ aErrorText += ByteString::CreateFromInt64(aError.nColumn);
aErrorText += " )";
// Fehler zuruecksetzen
@@ -1024,7 +1024,9 @@ BOOL SvIdlWorkingBase::WriteSvIdl( SvStream & rOutStm )
while( pEntry )
{
rOutStm << "#define " << pEntry->GetName().GetBuffer()
- << '\t' << ByteString( pEntry->GetValue() ).GetBuffer()
+ << '\t'
+ << ByteString::CreateFromInt64(
+ pEntry->GetValue() ).GetBuffer()
<< endl;
pEntry = aList.Next();
}