summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-22 14:50:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 09:01:24 +0200
commit7b5fac67fd2441778cb9a6d2f529adc270998144 (patch)
tree93031caf680ccfe0b7a34d89822811ff172c55fa /avmedia
parent75ddf3a22aa83d1b067085bd7132acab5a088856 (diff)
loplugin:unusedfields in accessibility..comphelper
Change-Id: Ifb68d65fc3e48dd80e3ff2b7a4124468fdda1695 Reviewed-on: https://gerrit.libreoffice.org/39137 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/gstreamer/gstwindow.cxx6
-rw-r--r--avmedia/source/gstreamer/gstwindow.hxx1
2 files changed, 2 insertions, 5 deletions
diff --git a/avmedia/source/gstreamer/gstwindow.cxx b/avmedia/source/gstreamer/gstwindow.cxx
index 30ba0c8764ae..df128744e0f0 100644
--- a/avmedia/source/gstreamer/gstwindow.cxx
+++ b/avmedia/source/gstreamer/gstwindow.cxx
@@ -35,8 +35,7 @@ namespace avmedia { namespace gstreamer {
Window::Window() :
- meZoomLevel( media::ZoomLevel_NOT_AVAILABLE ),
- mnPointerType( awt::SystemPointer::ARROW )
+ meZoomLevel( media::ZoomLevel_NOT_AVAILABLE )
{
}
@@ -74,9 +73,8 @@ media::ZoomLevel SAL_CALL Window::getZoomLevel( )
return meZoomLevel;
}
-void SAL_CALL Window::setPointerType( sal_Int32 nPointerType )
+void SAL_CALL Window::setPointerType( sal_Int32 /*nPointerType*/ )
{
- mnPointerType = nPointerType;
}
// XWindow
diff --git a/avmedia/source/gstreamer/gstwindow.hxx b/avmedia/source/gstreamer/gstwindow.hxx
index 3b8f431d767a..870df4c40786 100644
--- a/avmedia/source/gstreamer/gstwindow.hxx
+++ b/avmedia/source/gstreamer/gstwindow.hxx
@@ -76,7 +76,6 @@ public:
private:
css::media::ZoomLevel meZoomLevel;
- int mnPointerType;
};
} // namespace gstreamer