diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-10-06 08:18:55 -0400 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2014-11-01 14:05:49 +0000 |
commit | 8d48f6329518c6dfd25348aadc5d05e807d57d49 (patch) | |
tree | e6555c19a97936c41319a6a9012624e40b8f5c39 | |
parent | 1f4cadcc100d303c5f949774bb6541b8bd26f2e2 (diff) |
vcl/source: get rid of redundant svsys.h includes
+ adapted for WNT (it does really need it for app/settings.cxx)
Change-Id: I33a65d24f7c6c46a36718e4421ae88de180a9739
Reviewed-on: https://gerrit.libreoffice.org/11814
Reviewed-by: Douglas Mencken <dougmencken@gmail.com>
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
-rw-r--r-- | vcl/source/app/settings.cxx | 5 | ||||
-rw-r--r-- | vcl/source/window/accessibility.cxx | 1 | ||||
-rw-r--r-- | vcl/source/window/syschild.cxx | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index a30fd346dc4f..8048875ca68f 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -21,7 +21,10 @@ #include <officecfg/Office/Common.hxx> -#include <svsys.h> +#ifdef WNT +#include "win/svsys.h" +#endif + #include "comphelper/processfactory.hxx" #include <rtl/bootstrap.hxx> #include "tools/debug.hxx" diff --git a/vcl/source/window/accessibility.cxx b/vcl/source/window/accessibility.cxx index 0f3b416a79bb..49c95ac72569 100644 --- a/vcl/source/window/accessibility.cxx +++ b/vcl/source/window/accessibility.cxx @@ -55,7 +55,6 @@ #include "vcl/settings.hxx" // declare system types in sysdata.hxx -#include "svsys.h" #include "vcl/sysdata.hxx" #include "salframe.hxx" diff --git a/vcl/source/window/syschild.cxx b/vcl/source/window/syschild.cxx index 78c31f1374e2..d930c3d7b543 100644 --- a/vcl/source/window/syschild.cxx +++ b/vcl/source/window/syschild.cxx @@ -24,9 +24,6 @@ #include <tools/rc.h> -// declare system types in sysdata.hxx -#include <svsys.h> - #include <vcl/window.hxx> #include <vcl/sysdata.hxx> #include <vcl/svapp.hxx> |