[Libreoffice-commits] .: idl/source

Caolán McNamara caolan at kemper.freedesktop.org
Tue Jun 28 01:15:44 PDT 2011


 idl/source/cmptools/lex.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4b498166b878dc74e226a68a2b7e8e77d7d7c5a5
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Jun 28 09:12:10 2011 +0100

    ByteString->rtl::OString

diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index 33e1eef..328317d 100644
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -50,7 +50,7 @@ ByteString SvToken::GetTokenAsString() const
             aStr = aString;
             break;
         case SVTOKEN_INTEGER:
-            aStr = ByteString::CreateFromInt64(nLong);
+            aStr = rtl::OString::valueOf(static_cast<sal_Int64>(nLong));
             break;
         case SVTOKEN_STRING:
             aStr = aString;


More information about the Libreoffice-commits mailing list