diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-07-13 08:13:32 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-07-25 17:15:12 +0200 |
commit | e354681e5d5d21b4ad0d435193810922df7ec7a0 (patch) | |
tree | 311e65ec841de03e80f7dac40f11630091d115ee /cui/inc | |
parent | 9136237ac0758b11831c21cd636520b08c88b209 (diff) |
tdf#42949 Fix IWYU warnings in cui/*hxx
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ia1b6e58623b64b11cb1a5ac5c7fba73e8cc04d07
Reviewed-on: https://gerrit.libreoffice.org/75522
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'cui/inc')
-rw-r--r-- | cui/inc/tipoftheday.hrc | 1 | ||||
-rw-r--r-- | cui/inc/treeopt.hrc | 4 | ||||
-rw-r--r-- | cui/inc/twolines.hrc | 4 |
3 files changed, 9 insertions, 0 deletions
diff --git a/cui/inc/tipoftheday.hrc b/cui/inc/tipoftheday.hrc index 5ad0ce0ec14b..903f7411bd3f 100644 --- a/cui/inc/tipoftheday.hrc +++ b/cui/inc/tipoftheday.hrc @@ -22,6 +22,7 @@ #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String) +#include <rtl/ustring.hxx> #include <tuple> /* diff --git a/cui/inc/treeopt.hrc b/cui/inc/treeopt.hrc index a7f271a016c6..ffbfaa5e5e4b 100644 --- a/cui/inc/treeopt.hrc +++ b/cui/inc/treeopt.hrc @@ -22,6 +22,10 @@ #include <sal/types.h> #include <sfx2/pageids.hxx> +#include <svx/dialogs.hrc> +#include <svx/svxids.hrc> + +#include <utility> #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String) diff --git a/cui/inc/twolines.hrc b/cui/inc/twolines.hrc index d77f9abc264e..2e63227d25cf 100644 --- a/cui/inc/twolines.hrc +++ b/cui/inc/twolines.hrc @@ -10,6 +10,10 @@ #ifndef INCLUDED_CUI_INC_TWO_LINES_HRC #define INCLUDED_CUI_INC_TWO_LINES_HRC +#include <sal/types.h> + +#include <utility> + #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String) #define CHRDLG_ENCLOSE_NONE 0 |