diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 09:13:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 09:17:55 +0200 |
commit | a718b02f8e24d7c167a56456523bc921b12e4f64 (patch) | |
tree | 0926504c7b45b88cda0997748ea11238cf411851 /toolkit | |
parent | c3a89936abc7967ebe8916ca83cb38f6837f9aa1 (diff) |
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
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 6 | ||||
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
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 ) |