diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 12:03:27 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 12:03:27 +0000 |
commit | 5665eab121fdec4aff9b1f4f2c34dce446bc29ec (patch) | |
tree | db2842aa212e48ab6c12e3df373dbf475ab961cb /accessibility/bridge | |
parent | ddf48da8786f7ad8a51465aaa77e4f39ed45e658 (diff) |
INTEGRATION: CWS obo05 (1.6.6); FILE MERGED
2006/08/09 08:43:17 obo 1.6.6.1: #i53611# .net 2005
Diffstat (limited to 'accessibility/bridge')
-rw-r--r-- | accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx index f624342b5f3b..84be39a52968 100644 --- a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx +++ b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: WindowsAccessBridgeAdapter.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: obo $ $Date: 2006-09-17 01:33:10 $ + * last change: $Author: vg $ $Date: 2006-09-25 13:03:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -186,7 +186,7 @@ Java_org_openoffice_accessibility_WindowsAccessBridgeAdapter_createMapping(JNIEn if ( pJava_environment && pUno_environment ) { g_unoMapping = Mapping(pUno_environment, pJava_environment); - getCppuType((Reference< XAccessible > *) 0).getDescription((typelib_TypeDescription **) & g_pTypeDescription); + getCppuType((::com::sun::star::uno::Reference< XAccessible > *) 0).getDescription((typelib_TypeDescription **) & g_pTypeDescription); } if ( pJava_environment ) @@ -255,7 +255,7 @@ void handleWindowEvent(Window * pWindow, bool bShow) { if ( pWindow && pWindow->IsTopWindow() ) { - Reference< XAccessible > xAccessible; + ::com::sun::star::uno::Reference< XAccessible > xAccessible; // Test for combo box - drop down floating windows first Window * pParentWindow = pWindow->GetParent(); @@ -265,10 +265,10 @@ void handleWindowEvent(Window * pWindow, bool bShow) try { // The parent window of a combo box floating window should have the role COMBO_BOX - Reference< XAccessible > xParentAccessible(pParentWindow->GetAccessible()); + ::com::sun::star::uno::Reference< XAccessible > xParentAccessible(pParentWindow->GetAccessible()); if ( xParentAccessible.is() ) { - Reference< XAccessibleContext > xParentAC(xParentAccessible->getAccessibleContext()); + ::com::sun::star::uno::Reference< XAccessibleContext > xParentAC(xParentAccessible->getAccessibleContext()); if ( xParentAC.is() && (AccessibleRole::COMBO_BOX == xParentAC->getAccessibleRole()) ) { // O.k. - this is a combo box floating window corresponding to the child of role LIST of the parent. @@ -276,10 +276,10 @@ void handleWindowEvent(Window * pWindow, bool bShow) sal_Int32 nCount = xParentAC->getAccessibleChildCount(); for ( sal_Int32 n = 0; (n < nCount) && !xAccessible.is(); n++) { - Reference< XAccessible > xChild = xParentAC->getAccessibleChild(n); + ::com::sun::star::uno::Reference< XAccessible > xChild = xParentAC->getAccessibleChild(n); if ( xChild.is() ) { - Reference< XAccessibleContext > xChildAC = xChild->getAccessibleContext(); + ::com::sun::star::uno::Reference< XAccessibleContext > xChildAC = xChild->getAccessibleContext(); if ( xChildAC.is() && (AccessibleRole::LIST == xChildAC->getAccessibleRole()) ) { xAccessible = xChild; |