summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-12-11 22:25:43 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-12-11 22:25:43 +0100
commitec8af31595fab867abf963ecfd80c6c3ec529948 (patch)
tree0b51e02bd1e04ae16bce4b0a93f7b80872c3d9ed /slideshow
parent6c68b71058263be74197a961fd7dfd2b43caf22d (diff)
loplugin:nullptr
Change-Id: Ib6f55bc0ce6c09ea523174cb630c6d7cd9808f96
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
index ac7cf3bf3da8..7effc6887bfe 100644
--- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
+++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
@@ -1826,7 +1826,7 @@ void GlitterTransition::prepareTransition( sal_Int32 glLeavingSlideTex, sal_Int3
GLint location = glGetAttribLocation(m_nProgramObject, "center");
if (location != -1) {
glEnableVertexAttribArray(location);
- glVertexAttribPointer( location, 3, GL_FLOAT, false, 0, NULL );
+ glVertexAttribPointer( location, 3, GL_FLOAT, false, 0, nullptr );
CHECK_GL_ERROR();
}