From eeefce57c8a415c8bc5a4b044849d1e85ba20447 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 29 Sep 2011 21:54:00 +0300 Subject: Fix error: invalid conversion from 'long int*' to 'const GLint*' --- slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slideshow') diff --git a/slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm b/slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm index 346808b5ca84..d67355f0917f 100644 --- a/slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm +++ b/slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm @@ -822,7 +822,7 @@ void SAL_CALL OGLTransitionerImpl::update( double nTime ) throw (uno::RuntimeExc */ // works but not mandatory #if defined(MAC_OS_X_VERSION_10_5) - long int swapInt = 1; + GLint swapInt = 1; #else /* build target 10.4 */ long swapInt = 1; #endif -- cgit