diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2020-01-06 13:54:11 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2020-01-06 15:26:34 +0100 |
commit | f29a5020ee7bbfff1860cdd94c271ef30937fa95 (patch) | |
tree | 180d7afb20aead2e8c7f568505c17612b810a2e5 /cui | |
parent | 6df75678beb3d03337ce7b4e5a2f7eb7c3eb1176 (diff) |
Add include guards - follow-up for 0c4033a9c69da439b97378b0dc61e867953649eb
Change-Id: I2910ac7e063b785c845723a2eb265cce96c94ea9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86266
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optgdlg.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index 5f5117e24971..e10f743361c8 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -23,7 +23,9 @@ #include <svl/currencytable.hxx> #include <svtools/langhelp.hxx> #include <unotools/lingucfg.hxx> +#if defined(_WIN32) #include <unotools/resmgr.hxx> +#endif #include <sfx2/bindings.hxx> #include <sfx2/viewfrm.hxx> #include <i18nlangtag/mslangid.hxx> @@ -52,7 +54,9 @@ #include <officecfg/Setup.hxx> #include <comphelper/configuration.hxx> #include <tools/diagnose_ex.h> +#if HAVE_FEATURE_BREAKPAD #include <desktop/crashreport.hxx> +#endif #include <com/sun/star/configuration/theDefaultProvider.hpp> #include <com/sun/star/container/XNameAccess.hpp> |