diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:46:25 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:46:25 +0000 |
commit | 34f9e8df30888bb6f22f67d80878e2d1b2c82e82 (patch) | |
tree | 72c5c8c2245433becfe81e12f26daee47ba63cf0 /svx/source/accessibility/AccessibleShape.cxx | |
parent | 14c04d878f2fead733fcdd93ddd56e09ac4a6795 (diff) |
INTEGRATION: CWS sb13 (1.43.408); FILE MERGED
2004/02/06 09:43:56 sb 1.43.408.1: #i19699# Fixed string usage (adding number to string), patch supplied by tono.
Diffstat (limited to 'svx/source/accessibility/AccessibleShape.cxx')
-rwxr-xr-x | svx/source/accessibility/AccessibleShape.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx index 515ea4676a36..d1fd56d91fa7 100755 --- a/svx/source/accessibility/AccessibleShape.cxx +++ b/svx/source/accessibility/AccessibleShape.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleShape.cxx,v $ * - * $Revision: 1.43 $ + * $Revision: 1.44 $ * - * last change: $Author: hr $ $Date: 2003-04-28 15:26:51 $ + * last change: $Author: kz $ $Date: 2004-02-26 13:46:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -437,7 +437,8 @@ uno::Reference<XAccessible> SAL_CALL } else throw lang::IndexOutOfBoundsException ( - ::rtl::OUString::createFromAscii ("shape has no child with index ")+nIndex, + ::rtl::OUString::createFromAscii ("shape has no child with index ") + + rtl::OUString::valueOf(nIndex), static_cast<uno::XWeak*>(this)); return xChild; |