diff options
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxmenu.cxx | 4 | ||||
-rw-r--r-- | toolkit/source/awt/vclxtopwindow.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/awt/vclxmenu.cxx b/toolkit/source/awt/vclxmenu.cxx index 400b10b98860..3858625a8def 100644 --- a/toolkit/source/awt/vclxmenu.cxx +++ b/toolkit/source/awt/vclxmenu.cxx @@ -302,7 +302,7 @@ throw(css::uno::RuntimeException) ::osl::Guard< ::osl::Mutex > aGlobalGuard( ::osl::Mutex::getGlobalMutex() ); if( !pIdPopupMenu ) { - static ::cppu::OImplementationId idPopupMenu( sal_False ); + static ::cppu::OImplementationId idPopupMenu( false ); pIdPopupMenu = &idPopupMenu; } } @@ -316,7 +316,7 @@ throw(css::uno::RuntimeException) ::osl::Guard< ::osl::Mutex > aGlobalGuard( ::osl::Mutex::getGlobalMutex() ); if( !pIdMenuBar ) { - static ::cppu::OImplementationId idMenuBar( sal_False ); + static ::cppu::OImplementationId idMenuBar( false ); pIdMenuBar = &idMenuBar; } } diff --git a/toolkit/source/awt/vclxtopwindow.cxx b/toolkit/source/awt/vclxtopwindow.cxx index d382d3fef5e4..e2697aeed071 100644 --- a/toolkit/source/awt/vclxtopwindow.cxx +++ b/toolkit/source/awt/vclxtopwindow.cxx @@ -286,7 +286,7 @@ Window* VCLXTopWindow::GetWindowImpl() ::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() ); if( !pIdWithHandle ) { - static ::cppu::OImplementationId idWithHandle( sal_False ); + static ::cppu::OImplementationId idWithHandle( false ); pIdWithHandle = &idWithHandle; } } @@ -300,7 +300,7 @@ Window* VCLXTopWindow::GetWindowImpl() ::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() ); if( !pId ) { - static ::cppu::OImplementationId id( sal_False ); + static ::cppu::OImplementationId id( false ); pId = &id; } } |