summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-09-29 21:54:00 +0300
committerTor Lillqvist <tml@iki.fi>2011-09-29 22:07:56 +0300
commiteeefce57c8a415c8bc5a4b044849d1e85ba20447 (patch)
tree0a135168d73cffd7d032c8d56204e8d4265d8851 /slideshow
parent50ce26da1431d4695af24827679799c7a20c507b (diff)
Fix error: invalid conversion from 'long int*' to 'const GLint*'
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm2
1 files changed, 1 insertions, 1 deletions
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