Kaydet (Commit) d4aa726f authored tarafından Zolnai Tamás's avatar Zolnai Tamás

Avoid unused private field errors

Change-Id: I09fd613a8e6ed8283faebeb802cc30c57ac8d37b
üst a8dd75cd
......@@ -20,6 +20,7 @@ namespace avmedia { namespace ogl {
OGLManager::OGLManager( const uno::Reference< lang::XMultiServiceFactory >& rMgr )
: m_xMgr( rMgr )
{
(void) m_xMgr;
}
OGLManager::~OGLManager()
......
......@@ -18,6 +18,7 @@ OGLWindow::OGLWindow( OGLPlayer& rPlayer )
: m_rPlayer( rPlayer )
, meZoomLevel( media::ZoomLevel_ORIGINAL )
{
(void) m_rPlayer;
}
OGLWindow::~OGLWindow()
......
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