[Libreoffice-commits] .: pyuno/source

Lionel Elie Mamane lmamane at kemper.freedesktop.org
Sun Aug 21 02:03:25 PDT 2011


 pyuno/source/module/pyuno_module.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 790d4bd44a5f040afe76adf2da424edc9a58fead
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Sun Aug 21 11:01:30 2011 +0200

    OUStringBuffer.append call: add explicit radix to disambiguate overload

diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx
index 7bf8da2..0401408 100644
--- a/pyuno/source/module/pyuno_module.cxx
+++ b/pyuno/source/module/pyuno_module.cxx
@@ -135,7 +135,7 @@ public:
             if ( pos >= 0 )
             {
                 buf.appendAscii( " at position ");
-                buf.append(pos);
+                buf.append(pos, 10);
             }
             buf.appendAscii( " initialised multiple times.");
             throw RuntimeException(buf.makeStringAndClear(), Reference< XInterface > ());


More information about the Libreoffice-commits mailing list