summaryrefslogtreecommitdiff
path: root/vcl/source/window/dockmgr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-18 10:11:06 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-18 09:03:16 +0000
commit5a4d508bd6711def27c7738f7ac68c2da478e48c (patch)
treec688427afbce033c04009d71c4b2c256ec784da2 /vcl/source/window/dockmgr.cxx
parentd30a44aff1fb049a71e4eb2612be65a735fbe918 (diff)
com::sun::star->css in vcl/
Change-Id: Ifad76177673cf93746ba221838be80ff76fed228 Reviewed-on: https://gerrit.libreoffice.org/20032 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/source/window/dockmgr.cxx')
-rw-r--r--vcl/source/window/dockmgr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/dockmgr.cxx b/vcl/source/window/dockmgr.cxx
index b3fc00522b08..20950c6f23e6 100644
--- a/vcl/source/window/dockmgr.cxx
+++ b/vcl/source/window/dockmgr.cxx
@@ -481,7 +481,7 @@ public:
virtual ~ImplPopupFloatWin();
virtual void dispose() override;
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() override;
+ virtual css::uno::Reference< css::accessibility::XAccessible > CreateAccessible() override;
virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) override;
virtual void MouseMove( const MouseEvent& rMEvt ) override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
@@ -525,7 +525,7 @@ void ImplPopupFloatWin::dispose()
FloatingWindow::dispose();
}
-::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > ImplPopupFloatWin::CreateAccessible()
+css::uno::Reference< css::accessibility::XAccessible > ImplPopupFloatWin::CreateAccessible()
{
// switch off direct accessibilty support for this window
@@ -533,7 +533,7 @@ void ImplPopupFloatWin::dispose()
// as this window is only used as a helper for subtoolbars that are not teared-off, the parent toolbar
// has to provide accessibility support (as implemented in the toolkit)
// so the contained toolbar should appear as child of the correponsing toolbar item of the parent toolbar
- return ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >();
+ return css::uno::Reference< css::accessibility::XAccessible >();
}
vcl::Window* ImplPopupFloatWin::GetPreferredKeyInputWindow()