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 /vcl/source/app/settings.cxx | |
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>
Diffstat (limited to 'vcl/source/app/settings.cxx')
-rw-r--r-- | vcl/source/app/settings.cxx | 5 |
1 files changed, 4 insertions, 1 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" |