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

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Fri Oct 16 06:22:23 UTC 2020


 avmedia/source/viewer/mediawindow_impl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d0f072e8c223247f79268f4d1278dcd6aa5c624e
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Oct 15 22:22:57 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri Oct 16 08:21:42 2020 +0200

    Fix a confusion between UNOIDL long (i.e., sal_Int32) and C++ long
    
    Change-Id: Id4c2645652a9588d1a9a2658217662e93c59fdbe
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104387
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/avmedia/source/viewer/mediawindow_impl.cxx b/avmedia/source/viewer/mediawindow_impl.cxx
index c2a654969c07..13d84e5ec926 100644
--- a/avmedia/source/viewer/mediawindow_impl.cxx
+++ b/avmedia/source/viewer/mediawindow_impl.cxx
@@ -476,7 +476,7 @@ void MediaWindowImpl::setPointer(PointerStyle aPointer)
     if (!mxPlayerWindow.is())
         return;
 
-    long nPointer;
+    sal_Int32 nPointer;
 
     switch (aPointer)
     {


More information about the Libreoffice-commits mailing list