summaryrefslogtreecommitdiff
path: root/accessibility/source/helper/acc_factory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/helper/acc_factory.cxx')
-rw-r--r--accessibility/source/helper/acc_factory.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/accessibility/source/helper/acc_factory.cxx b/accessibility/source/helper/acc_factory.cxx
index 5b9bdca63b95..34e29e5f27a7 100644
--- a/accessibility/source/helper/acc_factory.cxx
+++ b/accessibility/source/helper/acc_factory.cxx
@@ -74,9 +74,9 @@ using namespace ::svt::table;
namespace {
-inline bool hasFloatingChild(Window *pWindow)
+inline bool hasFloatingChild(vcl::Window *pWindow)
{
- Window * pChild = pWindow->GetAccessibleChildWindow(0);
+ vcl::Window * pChild = pWindow->GetAccessibleChildWindow(0);
if( pChild && WINDOW_FLOATINGWINDOW == pChild->GetType() )
return true;
@@ -304,7 +304,7 @@ Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLX
{
Reference< XAccessibleContext > xContext;
- Window* pWindow = _pXWindow->GetWindow();
+ vcl::Window* pWindow = _pXWindow->GetWindow();
if ( pWindow )
{
WindowType nType = pWindow->GetType();
@@ -348,7 +348,7 @@ Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLX
// The logic here has to match that of Window::GetAccessibleParentWindow in
// vcl/source/window/window.cxx to avoid PopupMenuFloatingWindow
// becoming a11y parents of themselves
- Window* pChild = pWindow->GetAccessibleChildWindow(0);
+ vcl::Window* pChild = pWindow->GetAccessibleChildWindow(0);
if (PopupMenuFloatingWindow::isPopupMenu(pChild))
{
// Get the accessible context from the child window.