[Libreoffice-commits] core.git: vcl/skia
LuboÅ¡ LuÅák (via logerrit)
logerrit at kemper.freedesktop.org
Mon Aug 30 13:26:24 UTC 2021
vcl/skia/x11/gdiimpl.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 774bc3d64b6e1149ab9607e3fd11c96eee0da59f
Author: Luboš Luňák <l.lunak at collabora.com>
AuthorDate: Mon Aug 30 12:10:44 2021 +0200
Commit: Luboš Luňák <l.lunak at collabora.com>
CommitDate: Mon Aug 30 15:25:50 2021 +0200
fix missing variable assignment
Change-Id: Ic353aabe130dd82d4ee14208ab2c8d66fd839681
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121293
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak at collabora.com>
diff --git a/vcl/skia/x11/gdiimpl.cxx b/vcl/skia/x11/gdiimpl.cxx
index b53e0bd5cea7..b667dbe4c2b7 100644
--- a/vcl/skia/x11/gdiimpl.cxx
+++ b/vcl/skia/x11/gdiimpl.cxx
@@ -53,7 +53,7 @@ void X11SkiaSalGraphicsImpl::createWindowSurfaceInternal(bool forceRaster)
{
// See flushSurfaceToWindowContext().
if (renderMethod == RenderRaster)
- mWindowContext->getBackbufferSurface();
+ mSurface = mWindowContext->getBackbufferSurface();
else
mSurface = createSkSurface(GetWidth(), GetHeight());
}
More information about the Libreoffice-commits
mailing list