[Libreoffice-commits] core.git: avmedia/source

Zolnai Tamás tamas.zolnai at collabora.com
Thu Mar 27 04:21:13 PDT 2014


 avmedia/source/opengl/oglmanager.cxx |    1 +
 avmedia/source/opengl/oglwindow.cxx  |    1 +
 2 files changed, 2 insertions(+)

New commits:
commit d4aa726f16899ecc75b5c7c3736f21509e7a4e9c
Author: Zolnai Tamás <tamas.zolnai at collabora.com>
Date:   Thu Mar 27 12:20:11 2014 +0100

    Avoid unused private field errors
    
    Change-Id: I09fd613a8e6ed8283faebeb802cc30c57ac8d37b

diff --git a/avmedia/source/opengl/oglmanager.cxx b/avmedia/source/opengl/oglmanager.cxx
index d435e60..71d36d3 100644
--- a/avmedia/source/opengl/oglmanager.cxx
+++ b/avmedia/source/opengl/oglmanager.cxx
@@ -20,6 +20,7 @@ namespace avmedia { namespace ogl {
 OGLManager::OGLManager( const uno::Reference< lang::XMultiServiceFactory >& rMgr )
     : m_xMgr( rMgr )
 {
+    (void) m_xMgr;
 }
 
 OGLManager::~OGLManager()
diff --git a/avmedia/source/opengl/oglwindow.cxx b/avmedia/source/opengl/oglwindow.cxx
index ab524e4..30844b9 100644
--- a/avmedia/source/opengl/oglwindow.cxx
+++ b/avmedia/source/opengl/oglwindow.cxx
@@ -18,6 +18,7 @@ OGLWindow::OGLWindow( OGLPlayer& rPlayer )
     : m_rPlayer( rPlayer )
     , meZoomLevel( media::ZoomLevel_ORIGINAL )
 {
+    (void) m_rPlayer;
 }
 
 OGLWindow::~OGLWindow()


More information about the Libreoffice-commits mailing list