Win build: explicit default contstructor/destructor ofor OpenGLConext

Change-Id: I3f73da70ba798305b67dbb1a7becfa4f21166571
This commit is contained in:
Zolnai Tamás
2014-03-15 07:07:08 +01:00
parent 5cf38f1ae5
commit 57f7841fca
2 changed files with 11 additions and 0 deletions

View File

@@ -17,6 +17,9 @@
class VCLOPENGL_DLLPUBLIC OpenGLContext
{
public:
OpenGLContext();
~OpenGLContext();
bool init(OpenGLRender& rGLRender);
void setWinSize(const Size& rSize);

View File

@@ -12,6 +12,14 @@
using namespace com::sun::star;
OpenGLContext::OpenGLContext()
{
}
OpenGLContext::~OpenGLContext()
{
}
#ifdef DBG_UTIL
namespace {