diff --git a/include/vcl/OpenGLContext.hxx b/include/vcl/OpenGLContext.hxx index 9aa834199f2d..60bcfcca760f 100644 --- a/include/vcl/OpenGLContext.hxx +++ b/include/vcl/OpenGLContext.hxx @@ -17,6 +17,9 @@ class VCLOPENGL_DLLPUBLIC OpenGLContext { public: + OpenGLContext(); + ~OpenGLContext(); + bool init(OpenGLRender& rGLRender); void setWinSize(const Size& rSize); diff --git a/vcl/source/opengl/OpenGLContext.cxx b/vcl/source/opengl/OpenGLContext.cxx index fbd6e53ea26e..e17a7b83f1b6 100644 --- a/vcl/source/opengl/OpenGLContext.cxx +++ b/vcl/source/opengl/OpenGLContext.cxx @@ -12,6 +12,14 @@ using namespace com::sun::star; +OpenGLContext::OpenGLContext() +{ +} + +OpenGLContext::~OpenGLContext() +{ +} + #ifdef DBG_UTIL namespace {