summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_module.cxx
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2011-08-21 11:01:30 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2011-08-21 11:03:13 +0200
commit790d4bd44a5f040afe76adf2da424edc9a58fead (patch)
treeb996bd739d6701ee9aa4ff9e497289a0685c3e51 /pyuno/source/module/pyuno_module.cxx
parentcb937e72b855c68efe982b63cab9963f941867aa (diff)
OUStringBuffer.append call: add explicit radix to disambiguate overload
Diffstat (limited to 'pyuno/source/module/pyuno_module.cxx')
-rw-r--r--pyuno/source/module/pyuno_module.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx
index 7bf8da28b2d8..04014080599b 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 > ());