summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-02-26 12:47:39 +0000
committerKurt Zenker <kz@openoffice.org>2004-02-26 12:47:39 +0000
commitd7a89843b30344fcb2ed693805ffc5f92df3ae4d (patch)
treee7d672b78eb8c222a14382410b96298a2664e9cf /idl
parent0736b3d0a0c0ebfa3537ebdcba326d4831945216 (diff)
INTEGRATION: CWS sb13 (1.1.1.1.96); FILE MERGED
2004/02/06 08:29:17 sb 1.1.1.1.96.1: #i19699# Adapted to tightened tools/string.hxx.
Diffstat (limited to 'idl')
-rw-r--r--idl/source/cmptools/lex.cxx10
-rw-r--r--idl/source/objects/basobj.cxx7
2 files changed, 9 insertions, 8 deletions
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index 3162eafbb3c5..093d3df9c235 100644
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lex.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:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -93,7 +93,7 @@ ByteString SvToken::GetTokenAsString() const
aStr = aString;
break;
case SVTOKEN_INTEGER:
- aStr = nLong;
+ aStr = ByteString::CreateFromInt64(nLong);
break;
case SVTOKEN_STRING:
aStr = aString;
@@ -128,9 +128,9 @@ ByteString SvToken::Print() const
{
ByteString aStr;
aStr += "Line = ";
- aStr += nLine;
+ aStr += ByteString::CreateFromInt64(nLine);
aStr += ", Column = ";
- aStr += nColumn;
+ aStr += ByteString::CreateFromInt64(nColumn);
aStr += ", ";
switch( nType )
{
diff --git a/idl/source/objects/basobj.cxx b/idl/source/objects/basobj.cxx
index 1cfa683cb170..de6acaaa71e8 100644
--- a/idl/source/objects/basobj.cxx
+++ b/idl/source/objects/basobj.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: basobj.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:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -586,7 +586,8 @@ void SvMetaName::WriteAttributes( SvIdlDataBase & rBase, SvStream & rOutStm,
{
WriteTab( rOutStm, nTab );
rOutStm << "helpcontext("
- << ByteString( GetHelpContext().GetValue() ).GetBuffer()
+ << ByteString::CreateFromInt64(
+ GetHelpContext().GetValue() ).GetBuffer()
<< ")," << endl;
}
}