summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-03-01 12:13:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-03-01 20:38:36 +0000
commit85607c7e2620da4ac9b03b8edf831d5aedaf5ccb (patch)
treef3cd9672b0bf54306bd5a0b0d846dbcc84c5f6c9 /svx
parent9624fc5fb9c6ab54a65add7fd772e01a19e5e4ed (diff)
found an implicit casting bug
Diffstat (limited to 'svx')
-rw-r--r--svx/source/accessibility/ChildrenManagerImpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx
index 2c85ea3984a8..9927424c32ce 100644
--- a/svx/source/accessibility/ChildrenManagerImpl.cxx
+++ b/svx/source/accessibility/ChildrenManagerImpl.cxx
@@ -134,7 +134,7 @@ uno::Reference<XAccessible>
if (nIndex < 0 || (unsigned long)nIndex >= maVisibleChildren.size())
throw lang::IndexOutOfBoundsException (
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
- "no accessible child with index ")) + nIndex,
+ "no accessible child with index ")) + ::rtl::OUString::valueOf(nIndex),
mxParent);
return GetChild (maVisibleChildren[nIndex],nIndex);