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

Stephan Bergmann sbergman at redhat.com
Wed Dec 6 08:43:11 UTC 2017


 avmedia/source/vlc/vlcplayer.cxx |    4 ++--
 avmedia/source/vlc/vlcplayer.hxx |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 696fc45b4be3067176227637f448bee03fb2f7a6
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Dec 6 09:41:40 2017 +0100

    loplugin:salcall
    
    Change-Id: Icf9309addd971c5d98d4057dba6619c4eef9ea6d

diff --git a/avmedia/source/vlc/vlcplayer.cxx b/avmedia/source/vlc/vlcplayer.cxx
index 2b1c75967291..a1e07da62b33 100644
--- a/avmedia/source/vlc/vlcplayer.cxx
+++ b/avmedia/source/vlc/vlcplayer.cxx
@@ -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();
diff --git a/avmedia/source/vlc/vlcplayer.hxx b/avmedia/source/vlc/vlcplayer.hxx
index 97b7ffa26425..78fa06f4a251 100644
--- a/avmedia/source/vlc/vlcplayer.hxx
+++ b/avmedia/source/vlc/vlcplayer.hxx
@@ -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;


More information about the Libreoffice-commits mailing list