diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-08-27 21:28:48 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-09-01 16:28:47 +0100 |
commit | 9644b6c8c368d27a601d905e998ee9b6f27dbc9c (patch) | |
tree | 20d15e82241bec281fddc5f99fea239d6fcac27b /vcl/opengl | |
parent | 8ecd142d32334d0180d4d0bcee00b0f0e15a3e45 (diff) |
CRC is an integer type -> mnChecksum.
Change-Id: I9e4d36105a59c5f81677d8e062106dae6f709464
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/salbmp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx index db0e803d3add..2b141ca6a332 100644 --- a/vcl/opengl/salbmp.cxx +++ b/vcl/opengl/salbmp.cxx @@ -594,7 +594,7 @@ void OpenGLSalBitmap::updateChecksum() const pThis->CreateTexture(); } - pThis->mbChecksumValid = calcChecksumGL(pThis->maTexture, pThis->maChecksum); + pThis->mbChecksumValid = calcChecksumGL(pThis->maTexture, pThis->mnChecksum); } OpenGLContext* OpenGLSalBitmap::GetBitmapContext() |