summaryrefslogtreecommitdiff
path: root/vcl/win
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-10 00:42:48 +0100
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-11-10 07:59:54 +0100
commit9f8effdc74b4d74ce04d7c8971c91752d4a9a4cb (patch)
treeab0a662426607d44fc1c396e4dd42aff6621ea14 /vcl/win
parent6f6cba0e8d16723e42d54db866c4e9e0d00b7a45 (diff)
fix windows build
Change-Id: I4f8d4f9393b931f7593486f8e1fadee7ad35902a
Diffstat (limited to 'vcl/win')
-rw-r--r--vcl/win/source/gdi/salgdi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/source/gdi/salgdi.cxx b/vcl/win/source/gdi/salgdi.cxx
index f185955f5337..28394b5e6928 100644
--- a/vcl/win/source/gdi/salgdi.cxx
+++ b/vcl/win/source/gdi/salgdi.cxx
@@ -34,7 +34,7 @@
#include "salgdiimpl.hxx"
#include "gdiimpl.hxx"
-#include "openglgdiimpl.hxx"
+#include "opengl/win/gdiimpl.hxx"
#include <vcl/opengl/OpenGLHelper.hxx>
@@ -592,7 +592,7 @@ WinSalGraphics::WinSalGraphics(WinSalGraphics::Type eType, bool bScreen, HWND hW
static bool bOpenGLPossible = OpenGLHelper::supportsVCLOpenGL();
bool bUseOpenGL = bOpenGLPossible && !mbPrinter ? officecfg::Office::Common::VCL::UseOpenGL::get() : false;
if (bUseOpenGL)
- mpImpl.reset(new OpenGLSalGraphicsImpl());
+ mpImpl.reset(new WinOpenGLSalGraphicsImpl());
else
mpImpl.reset(new WinSalGraphicsImpl(*this));