diff options
author | Louis-Francis Ratté-Boulianne <lfrb@collabora.com> | 2014-11-22 07:58:38 -0500 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-11-22 20:14:19 +0100 |
commit | e26237f6cbc0d499c91aa32c3bea1f9daee6578e (patch) | |
tree | d592bb8b6e516f5cf05ac5cc98bdbe1d0a9fcf9a /vcl/unx/generic/gdi | |
parent | 90af2a6c403e7f6e5192d54f69b38b85a9e6fbc8 (diff) |
vcl: Always use the same OpenGL context when drawing in a window
Change-Id: Ief0e947149c133aaa8e81973e088c4df6432bfdc
Diffstat (limited to 'vcl/unx/generic/gdi')
-rw-r--r-- | vcl/unx/generic/gdi/salgdi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/gdi/salgdi.cxx b/vcl/unx/generic/gdi/salgdi.cxx index e07b56effe2f..80f24f0628fb 100644 --- a/vcl/unx/generic/gdi/salgdi.cxx +++ b/vcl/unx/generic/gdi/salgdi.cxx @@ -151,7 +151,7 @@ void X11SalGraphics::SetDrawable( Drawable aDrawable, SalX11Screen nXScreen ) if( hDrawable_ ) { - dynamic_cast<X11GraphicsImpl&>(*mpImpl.get()).Init(); + mpImpl->Init(); // TODO: moggi: FIXME nTextPixel_ = GetPixel( nTextColor_ ); } } |