From a718b02f8e24d7c167a56456523bc921b12e4f64 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 3 Apr 2014 09:13:34 +0200 Subject: vcl: sal_Bool->bool and cleanup - remove unused PFilterDlgCall typedef - remove bool parameter from PFilterCall typedef - it was always being called with false, and nothing was reading it Change-Id: Ic56127e7d55254a7b9b65849a21cb286f52344d1 --- toolkit/source/awt/vclxwindow.cxx | 6 +++--- toolkit/source/awt/vclxwindows.cxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index 8eaef89d63eb..82ce13627d21 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -1267,7 +1267,7 @@ namespace toolkit (aStyleSettings.*pSetter)( Color( nColor ) ); aSettings.SetStyleSettings( aStyleSettings ); - _pWindow->SetSettings( aSettings, sal_True ); + _pWindow->SetSettings( aSettings, true ); } } @@ -1441,7 +1441,7 @@ void VCLXWindow::setProperty( const OUString& PropertyName, const ::com::sun::st aMouseSettings.SetWheelBehavior( nVclBehavior ); aSettings.SetMouseSettings( aMouseSettings ); - pWindow->SetSettings( aSettings, sal_True ); + pWindow->SetSettings( aSettings, true ); } break; @@ -1884,7 +1884,7 @@ void VCLXWindow::setProperty( const OUString& PropertyName, const ::com::sun::st aMouseSettings.SetButtonRepeat( nRepeatDelay ); aSettings.SetMouseSettings( aMouseSettings ); - pWindow->SetSettings( aSettings, sal_True ); + pWindow->SetSettings( aSettings, true ); } } break; diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index 60f9ed4458c5..da62c96108f3 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -145,7 +145,7 @@ namespace toolkit } aSettings.SetStyleSettings( aStyleSettings ); - _pWindow->SetSettings( aSettings, sal_True ); + _pWindow->SetSettings( aSettings, true ); } Any getButtonLikeFaceColor( const Window* _pWindow ) -- cgit