diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-10 18:46:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-10 20:43:05 +0200 |
commit | e23d2be0ce41ea0a1f6d3d58d626a546c25cb516 (patch) | |
tree | 5a7704f14398859252a666dd607d47af6040705b /winaccessibility/source/service | |
parent | 76ea287c040dcfc2fe71b0588e1701cfe1ae6940 (diff) |
using decls should come after #include
Change-Id: I058551e87bca42adede860f6f299b0f7ae2af3b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156798
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'winaccessibility/source/service')
-rw-r--r-- | winaccessibility/source/service/AccFrameEventListener.cxx | 6 | ||||
-rw-r--r-- | winaccessibility/source/service/msaaservice_impl.cxx | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/winaccessibility/source/service/AccFrameEventListener.cxx b/winaccessibility/source/service/AccFrameEventListener.cxx index 9d2bd0cf30d2..55ecf24792d1 100644 --- a/winaccessibility/source/service/AccFrameEventListener.cxx +++ b/winaccessibility/source/service/AccFrameEventListener.cxx @@ -29,13 +29,13 @@ #include <AccObjectWinManager.hxx> #include <unomsaaevent.hxx> -using namespace com::sun::star::uno; -using namespace com::sun::star::accessibility; - #include <vcl/window.hxx> #include <toolkit/awt/vclxwindow.hxx> #include <vcl/sysdata.hxx> +using namespace com::sun::star::uno; +using namespace com::sun::star::accessibility; + AccFrameEventListener::AccFrameEventListener(css::accessibility::XAccessible* pAcc, AccObjectWinManager* pManager) :AccEventListener(pAcc, pManager) { diff --git a/winaccessibility/source/service/msaaservice_impl.cxx b/winaccessibility/source/service/msaaservice_impl.cxx index dcc493718acc..3891b6df4872 100644 --- a/winaccessibility/source/service/msaaservice_impl.cxx +++ b/winaccessibility/source/service/msaaservice_impl.cxx @@ -35,14 +35,14 @@ #include <prewin.h> #include <postwin.h> +#include <AccTopWindowListener.hxx> + using namespace ::com::sun::star; // for odk interfaces using namespace ::com::sun::star::uno; // for basic types using namespace ::com::sun::star::accessibility; using namespace ::com::sun::star::awt; -#include <AccTopWindowListener.hxx> - namespace my_sc_impl { |