Kaydet (Commit) c4e04d6f authored tarafından Gabor Kelemen's avatar Gabor Kelemen Kaydeden (comit) Miklos Vajna

tdf#42949 Fix IWYU warnings in include/avmedia/

Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.

Change-Id: Ia418fdf7077d1c0c169671770237381c4da7b7b0
Reviewed-on: https://gerrit.libreoffice.org/70582
Tested-by: Jenkins
Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.com>
üst 812f0a83
...@@ -19,13 +19,14 @@ ...@@ -19,13 +19,14 @@
#ifndef INCLUDED_AVMEDIA_MEDIACONTROLBASE_HXX #ifndef INCLUDED_AVMEDIA_MEDIACONTROLBASE_HXX
#define INCLUDED_AVMEDIA_MEDIACONTROLBASE_HXX #define INCLUDED_AVMEDIA_MEDIACONTROLBASE_HXX
#include <svx/svxdllapi.h>
#include <vcl/edit.hxx> #include <vcl/edit.hxx>
#include <vcl/toolbox.hxx> #include <vcl/toolbox.hxx>
#include <vcl/lstbox.hxx> #include <vcl/lstbox.hxx>
#include <vcl/slider.hxx> #include <vcl/slider.hxx>
#include <avmedia/mediaitem.hxx>
#include <avmedia/mediawindow.hxx> #include <avmedia/avmediadllapi.h>
namespace avmedia { class MediaItem; }
#define AVMEDIA_TIME_RANGE 2048 #define AVMEDIA_TIME_RANGE 2048
#define AVMEDIA_DB_RANGE -40 #define AVMEDIA_DB_RANGE -40
......
...@@ -22,13 +22,14 @@ ...@@ -22,13 +22,14 @@
#include <svl/poolitem.hxx> #include <svl/poolitem.hxx>
#include <com/sun/star/media/ZoomLevel.hpp> #include <com/sun/star/media/ZoomLevel.hpp>
#include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/embed/XStorage.hpp>
#include <avmedia/avmediadllapi.h> #include <avmedia/avmediadllapi.h>
#include <memory> #include <memory>
#include <o3tl/typed_flags_set.hxx> #include <o3tl/typed_flags_set.hxx>
class SvStream; namespace com::sun::star::embed { class XStorage; }
namespace com::sun::star::frame { class XModel; }
namespace com::sun::star::io { class XInputStream; }
namespace com::sun::star::io { class XStream; }
enum class AVMediaSetMask enum class AVMediaSetMask
{ {
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#ifndef INCLUDED_AVMEDIA_MEDIAPLAYER_HXX #ifndef INCLUDED_AVMEDIA_MEDIAPLAYER_HXX
#define INCLUDED_AVMEDIA_MEDIAPLAYER_HXX #define INCLUDED_AVMEDIA_MEDIAPLAYER_HXX
#include <sfx2/ctrlitem.hxx>
#include <sfx2/dockwin.hxx> #include <sfx2/dockwin.hxx>
#include <sfx2/viewfrm.hxx> #include <sfx2/viewfrm.hxx>
#include <avmedia/avmediadllapi.h> #include <avmedia/avmediadllapi.h>
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#ifndef INCLUDED_AVMEDIA_MEDIATOOLBOX_HXX #ifndef INCLUDED_AVMEDIA_MEDIATOOLBOX_HXX
#define INCLUDED_AVMEDIA_MEDIATOOLBOX_HXX #define INCLUDED_AVMEDIA_MEDIATOOLBOX_HXX
#include <svl/lstner.hxx>
#include <sfx2/tbxctrl.hxx> #include <sfx2/tbxctrl.hxx>
#include <avmedia/avmediadllapi.h> #include <avmedia/avmediadllapi.h>
......
...@@ -20,24 +20,22 @@ ...@@ -20,24 +20,22 @@
#ifndef INCLUDED_AVMEDIA_MEDIAWINDOW_HXX #ifndef INCLUDED_AVMEDIA_MEDIAWINDOW_HXX
#define INCLUDED_AVMEDIA_MEDIAWINDOW_HXX #define INCLUDED_AVMEDIA_MEDIAWINDOW_HXX
#include <memory>
#include <vector> #include <vector>
#include <tools/gen.hxx> #include <tools/gen.hxx>
#include <com/sun/star/media/ZoomLevel.hpp> #include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/media/XPlayer.hpp>
#include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/uno/XInterface.hpp>
#include <vcl/bitmapex.hxx>
#include <vcl/vclptr.hxx> #include <vcl/vclptr.hxx>
#include <avmedia/avmediadllapi.h> #include <avmedia/avmediadllapi.h>
#define AVMEDIA_FRAMEGRABBER_DEFAULTFRAME -1.0 #define AVMEDIA_FRAMEGRABBER_DEFAULTFRAME -1.0
namespace com::sun::star::graphic { class XGraphic; }
namespace com::sun::star::media { class XPlayer; }
namespace vcl { class Window; }
namespace weld { class Window; } namespace weld { class Window; }
class KeyEvent; class KeyEvent;
class MouseEvent; class MouseEvent;
class CommandEvent; class CommandEvent;
class PopupMenu;
struct AcceptDropEvent; struct AcceptDropEvent;
struct ExecuteDropEvent; struct ExecuteDropEvent;
enum class PointerStyle; enum class PointerStyle;
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
#include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/exc_hlp.hxx>
#include <com/sun/star/io/XInputStream.hpp>
#include <oox/helper/attributelist.hxx> #include <oox/helper/attributelist.hxx>
#include <oox/helper/propertymap.hxx> #include <oox/helper/propertymap.hxx>
#include <drawingml/embeddedwavaudiofile.hxx> #include <drawingml/embeddedwavaudiofile.hxx>
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <config_features.h> #include <config_features.h>
#include <com/sun/star/media/XPlayer.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp> #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
......
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/frame/XDispatch.hpp>
#include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/frame/XLayoutManager.hpp>
#include <com/sun/star/presentation/SlideShow.hpp> #include <com/sun/star/presentation/SlideShow.hpp>
#include <com/sun/star/media/XPlayer.hpp>
#include <svl/aeitem.hxx> #include <svl/aeitem.hxx>
#include <svl/urihelper.hxx> #include <svl/urihelper.hxx>
#include <unotools/saveopt.hxx> #include <unotools/saveopt.hxx>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment