diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-18 10:10:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-18 09:25:06 +0000 |
commit | 0a840edcc19ad1b8bb1525717d91ce8ade0c0092 (patch) | |
tree | 7b868933b54e3e763bf294b463abd302be26fb4f /include/toolkit/helper/vclunohelper.hxx | |
parent | 3ab9cebf45e725bbd3d7828dbcf974d3bef2c32c (diff) |
includes should be at the top of the file
not randomly scattered through the code
found with something like:
git ls-files *.cpp | xargs grep -Pzl "(?s){.*#include"
Change-Id: I9c242fa4ef99e8677f2800d7ec9f16d16e488351
Reviewed-on: https://gerrit.libreoffice.org/30952
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/toolkit/helper/vclunohelper.hxx')
-rw-r--r-- | include/toolkit/helper/vclunohelper.hxx | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/toolkit/helper/vclunohelper.hxx b/include/toolkit/helper/vclunohelper.hxx index bd02d6a498d0..c9b062e2d4f0 100644 --- a/include/toolkit/helper/vclunohelper.hxx +++ b/include/toolkit/helper/vclunohelper.hxx @@ -28,6 +28,16 @@ #include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/awt/MouseEvent.hpp> +#include <vcl/bitmapex.hxx> +#include <vcl/region.hxx> +#include <vcl/metric.hxx> +#include <vcl/vclptr.hxx> +#include <vcl/window.hxx> +#include <tools/mapunit.hxx> +#include <tools/fldunit.hxx> +#include <tools/poly.hxx> + + namespace com { namespace sun { namespace star { namespace uno { class XInterface; }}}} @@ -53,15 +63,6 @@ namespace com { namespace sun { namespace star { namespace awt { }}}} -#include <vcl/bitmapex.hxx> -#include <vcl/region.hxx> -#include <vcl/metric.hxx> -#include <vcl/vclptr.hxx> -#include <vcl/window.hxx> -#include <tools/mapunit.hxx> -#include <tools/fldunit.hxx> -#include <tools/poly.hxx> - class OutputDevice; class MouseEvent; class KeyEvent; |