Avoid unused private field errors

Change-Id: I09fd613a8e6ed8283faebeb802cc30c57ac8d37b
This commit is contained in:
Zolnai Tamás 2014-03-27 12:20:11 +01:00
parent a8dd75cdda
commit d4aa726f16
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ namespace avmedia { namespace ogl {
OGLManager::OGLManager( const uno::Reference< lang::XMultiServiceFactory >& rMgr )
: m_xMgr( rMgr )
{
(void) m_xMgr;
}
OGLManager::~OGLManager()

View File

@ -18,6 +18,7 @@ OGLWindow::OGLWindow( OGLPlayer& rPlayer )
: m_rPlayer( rPlayer )
, meZoomLevel( media::ZoomLevel_ORIGINAL )
{
(void) m_rPlayer;
}
OGLWindow::~OGLWindow()