Kaydet (Commit) 2351fd5d authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:unusedfields in avmedia

Change-Id: I725a80cf7b6f2b728e650d0f365d063931b17ea7
üst 472388fd
......@@ -871,7 +871,7 @@ uno::Reference< ::media::XPlayerWindow > SAL_CALL Player::createPlayerWindow( co
if( aSize.Width > 0 && aSize.Height > 0 )
{
::avmedia::gstreamer::Window* pWindow = new ::avmedia::gstreamer::Window( mxMgr );
::avmedia::gstreamer::Window* pWindow = new ::avmedia::gstreamer::Window;
xRet = pWindow;
......
......@@ -52,8 +52,7 @@ static ::osl::Mutex& ImplGetOwnStaticMutex()
// Window
Window::Window( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
mxMgr( rxMgr ),
Window::Window() :
meZoomLevel( media::ZoomLevel_NOT_AVAILABLE ),
mnPointerType( awt::SystemPointer::ARROW )
{
......
......@@ -39,7 +39,7 @@ class Window : public ::cppu::WeakImplHelper< css::media::XPlayerWindow,
{
public:
explicit Window( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMgr );
explicit Window();
virtual ~Window();
// XPlayerWindow
......@@ -79,8 +79,6 @@ public:
private:
css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr;
css::media::ZoomLevel meZoomLevel;
int mnPointerType;
};
......
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