diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-21 11:01:30 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-21 11:03:13 +0200 |
commit | 790d4bd44a5f040afe76adf2da424edc9a58fead (patch) | |
tree | b996bd739d6701ee9aa4ff9e497289a0685c3e51 /pyuno | |
parent | cb937e72b855c68efe982b63cab9963f941867aa (diff) |
OUStringBuffer.append call: add explicit radix to disambiguate overload
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_module.cxx | 2 |
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 > ()); |