diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-21 21:04:34 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-26 07:06:23 +0200 |
commit | 9beed0a363605067f5d57294e7a9d9a48a3b112d (patch) | |
tree | adc0463244558e972e32086df747be2517fbdd40 | |
parent | ba03fceba889f1560762ccd9650a7317e5a4ae4d (diff) |
vcl: rearrange header order
Change-Id: Ib902e0ff8e416c108e311be297192f109fe58ae7
Reviewed-on: https://gerrit.libreoffice.org/36846
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
-rw-r--r-- | vcl/source/window/errinf.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vcl/source/window/errinf.cxx b/vcl/source/window/errinf.cxx index c96ceca7a2a9..3c543cd3a4f8 100644 --- a/vcl/source/window/errinf.cxx +++ b/vcl/source/window/errinf.cxx @@ -17,12 +17,14 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <limits.h> -#include <vcl/errinf.hxx> -#include <rtl/strbuf.hxx> #include <osl/diagnose.h> +#include <rtl/strbuf.hxx> + +#include <vcl/errinf.hxx> #include <vcl/window.hxx> + #include <vector> +#include <limits.h> class ErrorHandler; |