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 /forms | |
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 'forms')
-rw-r--r-- | forms/source/solar/component/navbarcontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/solar/component/navbarcontrol.cxx b/forms/source/solar/component/navbarcontrol.cxx index b3f9814b2786..bc875876e0d3 100644 --- a/forms/source/solar/component/navbarcontrol.cxx +++ b/forms/source/solar/component/navbarcontrol.cxx @@ -261,7 +261,7 @@ namespace frm MouseSettings aMouseSettings = aSettings.GetMouseSettings(); aMouseSettings.SetButtonRepeat( 10 ); aSettings.SetMouseSettings( aMouseSettings ); - pNavBar->SetSettings( aSettings, sal_True ); + pNavBar->SetSettings( aSettings, true ); // outta here return pPeer; |