From 57f7841fca0b10e24a02fe624c3be18f62106121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolnai=20Tam=C3=A1s?= Date: Sat, 15 Mar 2014 07:07:08 +0100 Subject: [PATCH] Win build: explicit default contstructor/destructor ofor OpenGLConext Change-Id: I3f73da70ba798305b67dbb1a7becfa4f21166571 --- include/vcl/OpenGLContext.hxx | 3 +++ vcl/source/opengl/OpenGLContext.cxx | 8 ++++++++ 2 files changed, 11 insertions(+) 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 {