diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-02-12 21:00:26 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-02-19 16:28:39 +0100 |
commit | 58fa1889eeaa1d8e4abdf49a18660721309362ce (patch) | |
tree | 4b2cd942cf351347a5d42ee86d3e8d5ba3428b27 /include/framework/addonmenu.hxx | |
parent | c40b39375dbc1248c8c067ee709ad3bdcb4a01ee (diff) |
tdf#42949 Fix IWYU warnings in include/framework/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ia9616f644a68ec6da22e646ba0d919a3489a9481
Reviewed-on: https://gerrit.libreoffice.org/67745
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/framework/addonmenu.hxx')
-rw-r--r-- | include/framework/addonmenu.hxx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/include/framework/addonmenu.hxx b/include/framework/addonmenu.hxx index 91f8dc109276..4e8c1f24f9d8 100644 --- a/include/framework/addonmenu.hxx +++ b/include/framework/addonmenu.hxx @@ -19,15 +19,19 @@ #ifndef INCLUDED_FRAMEWORK_ADDONMENU_HXX #define INCLUDED_FRAMEWORK_ADDONMENU_HXX -#include <com/sun/star/frame/XFrame.hpp> -#include <com/sun/star/beans/PropertyValue.hpp> -#include <com/sun/star/uno/Sequence.hxx> -#include <com/sun/star/uno/XComponentContext.hpp> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> +#include <rtl/ustring.hxx> +#include <vcl/vclptr.hxx> -#include <vcl/menu.hxx> #include <framework/fwedllapi.h> +namespace com::sun::star::beans { struct PropertyValue; } +namespace com::sun::star::frame { class XFrame; } +namespace com::sun::star::uno { template <class E> class Sequence; } +namespace com::sun::star::uno { template <typename > class Reference; } + +class MenuBar; +class PopupMenu; + #define ADDONMENU_ITEMID_START 2000 #define ADDONMENU_ITEMID_END 3000 |