Kaydet (Commit) b4daf82f authored tarafından Markus Mohrhard's avatar Markus Mohrhard

forgot to init the variable for the text rendering

Change-Id: I307a83e1b5564f0bb91dcb6c30a78f2bd560a911
üst 03df4cca
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
#include "textrender.hxx" #include "textrender.hxx"
#include "gdiimpl.hxx" #include "gdiimpl.hxx"
#include "openglgdiimpl.hxx" #include "openglgdiimpl.hxx"
#include "x11cairotextrender.hxx"
#include "generic/printergfx.hxx" #include "generic/printergfx.hxx"
#include "xrender_peer.hxx" #include "xrender_peer.hxx"
...@@ -64,6 +65,7 @@ ...@@ -64,6 +65,7 @@
#include <vcl/opengl/OpenGLHelper.hxx> #include <vcl/opengl/OpenGLHelper.hxx>
X11SalGraphics::X11SalGraphics(): X11SalGraphics::X11SalGraphics():
mpTextRenderImpl(new X11CairoTextRender(false, *this)),
m_pFrame(NULL), m_pFrame(NULL),
m_pVDev(NULL), m_pVDev(NULL),
m_pColormap(NULL), m_pColormap(NULL),
...@@ -87,6 +89,7 @@ X11SalGraphics::X11SalGraphics(): ...@@ -87,6 +89,7 @@ X11SalGraphics::X11SalGraphics():
mpImpl.reset(new OpenGLSalGraphicsImpl()); mpImpl.reset(new OpenGLSalGraphicsImpl());
else else
mpImpl.reset(new X11SalGraphicsImpl(*this)); mpImpl.reset(new X11SalGraphicsImpl(*this));
} }
X11SalGraphics::~X11SalGraphics() X11SalGraphics::~X11SalGraphics()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment