To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69889
------- Additional comments from [EMAIL PROTECTED] Thu May 29 15:38:18 +0000
2008 -------
cd->ufi: Uwe, the current implementation within the Window base class uses the
function GetHelpText() for the accessible description. That's a fact. Please
look at the implementation yourself.
String Window::GetAccessibleDescription() const
{
String aAccessibleDescription;
if ( mpWindowImpl->mpAccessibleInfos &&
mpWindowImpl->mpAccessibleInfos->pAccessibleDescription )
{
aAccessibleDescription =
*mpWindowImpl->mpAccessibleInfos->pAccessibleDescription;
}
else
{
// Special code for help text windows. ZT asks the border
window for the
// description so we have to forward this request to our inner
window.
const Window* pWin = ((Window *)this)->ImplGetWindow();
if ( pWin->GetType() == WINDOW_HELPTEXTWINDOW )
aAccessibleDescription = pWin->GetHelpText();
else
aAccessibleDescription = GetHelpText();
}
return aAccessibleDescription;
}
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]