[Libreoffice-commits] core.git: include/vcl vcl/source
Chris Sherlock
chris.sherlock79 at gmail.com
Thu Jan 7 18:52:34 PST 2016
include/vcl/wrkwin.hxx | 2 +-
vcl/source/window/wrkwin.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 9321c560943330fbc76dacfebff67bd740fbc95b
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date: Fri Jan 8 13:51:58 2016 +1100
vcl: StartPresentationMode should be using a sal_uInt32 as function param
Change-Id: I78a484a25be660f754d116263a203ae1a926ac18
diff --git a/include/vcl/wrkwin.hxx b/include/vcl/wrkwin.hxx
index 0d08b2a..467b530 100644
--- a/include/vcl/wrkwin.hxx
+++ b/include/vcl/wrkwin.hxx
@@ -90,7 +90,7 @@ public:
void StartPresentationMode( bool bPresentation,
PresentationFlags nFlags,
- sal_Int32 nDisplayScreen );
+ sal_uInt32 nDisplayScreen );
/**
@overload void StartPresentationMode( bool bPresentation, sal_uInt16 nFlags, sal_uInt32 nDisplayScreen)
*/
diff --git a/vcl/source/window/wrkwin.cxx b/vcl/source/window/wrkwin.cxx
index cd32d25..0d4e9d1 100644
--- a/vcl/source/window/wrkwin.cxx
+++ b/vcl/source/window/wrkwin.cxx
@@ -160,7 +160,7 @@ void WorkWindow::StartPresentationMode( bool bPresentation, PresentationFlags nF
return StartPresentationMode( bPresentation, nFlags, GetScreenNumber());
}
-void WorkWindow::StartPresentationMode( bool bPresentation, PresentationFlags nFlags, sal_Int32 nDisplayScreen )
+void WorkWindow::StartPresentationMode( bool bPresentation, PresentationFlags nFlags, sal_uInt32 nDisplayScreen )
{
if ( !bPresentation == !mbPresentationMode )
return;
More information about the Libreoffice-commits
mailing list