summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-06 03:41:01 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-05-06 07:25:48 +0200
commit08a02bce23fd2b9a4b5602bbe03c70beb4ba01c9 (patch)
tree07f43791e5a093fcdbe5b81e42bf79498d418ab0 /vcl
parentf63a24a4c2f5687a259b17f2bdaceeecdf16c43c (diff)
sal_Bool to bool
Change-Id: I2febe40b1128eefa8838f3dc0836863ed96c0048
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/opengl/OpenGLContext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/opengl/OpenGLContext.cxx b/vcl/source/opengl/OpenGLContext.cxx
index 8faa4d941416..08f6b32143c2 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -581,18 +581,18 @@ bool OpenGLContext::initWindow()
if( !m_pChildWindow )
{
SystemWindowData winData = generateWinData(mpWindow);
- m_pChildWindow = new SystemChildWindow(mpWindow, 0, &winData, sal_False);
+ m_pChildWindow = new SystemChildWindow(mpWindow, 0, &winData, false);
m_pChildWindowGC.reset(m_pChildWindow);
}
if( m_pChildWindow )
{
- m_pChildWindow->SetMouseTransparent( sal_True );
+ m_pChildWindow->SetMouseTransparent( true );
m_pChildWindow->SetParentClipMode( PARENTCLIPMODE_NOCLIP );
- m_pChildWindow->EnableEraseBackground( sal_False );
+ m_pChildWindow->EnableEraseBackground( false );
m_pChildWindow->SetControlForeground();
m_pChildWindow->SetControlBackground();
- m_pChildWindow->EnablePaint(sal_False);
+ m_pChildWindow->EnablePaint(false);
const SystemEnvData* sysData(m_pChildWindow->GetSystemData());
m_aGLWin.hWnd = sysData->hWnd;