Kaydet (Commit) 696fc45b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:salcall

Change-Id: Icf9309addd971c5d98d4057dba6619c4eef9ea6d
üst c0ac78c9
......@@ -92,7 +92,7 @@ double SAL_CALL VLCPlayer::getDuration()
return static_cast<double>( mMedia.getDuration() ) / MS_IN_SEC;
}
void SAL_CALL VLCPlayer::setScale( float factor )
void VLCPlayer::setScale( float factor )
{
::osl::MutexGuard aGuard(m_aMutex);
mPlayer.setScale( factor );
......@@ -201,7 +201,7 @@ namespace
}
}
void SAL_CALL VLCPlayer::setWindowID( const intptr_t windowID )
void VLCPlayer::setWindowID( const intptr_t windowID )
{
::osl::MutexGuard aGuard( m_aMutex );
mPlayer.stop();
......
......@@ -58,8 +58,8 @@ public:
unsigned getWidth() const;
unsigned getHeight() const;
void SAL_CALL setScale( float factor );
void SAL_CALL setWindowID( const intptr_t windowID );
void setScale( float factor );
void setWindowID( const intptr_t windowID );
void SAL_CALL start() override;
void SAL_CALL stop() override;
......
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