From 85607c7e2620da4ac9b03b8edf831d5aedaf5ccb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 1 Mar 2011 12:13:07 +0000 Subject: found an implicit casting bug --- svx/source/accessibility/ChildrenManagerImpl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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); -- cgit v1.2.3