Kaydet (Commit) 790d4bd4 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

OUStringBuffer.append call: add explicit radix to disambiguate overload

üst cb937e72
...@@ -135,7 +135,7 @@ public: ...@@ -135,7 +135,7 @@ public:
if ( pos >= 0 ) if ( pos >= 0 )
{ {
buf.appendAscii( " at position "); buf.appendAscii( " at position ");
buf.append(pos); buf.append(pos, 10);
} }
buf.appendAscii( " initialised multiple times."); buf.appendAscii( " initialised multiple times.");
throw RuntimeException(buf.makeStringAndClear(), Reference< XInterface > ()); throw RuntimeException(buf.makeStringAndClear(), Reference< XInterface > ());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment