diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-10 16:52:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-10 19:12:39 +0100 |
commit | a97d67cd0bf0819d4559fa79d5fcbcd86222fe6a (patch) | |
tree | 6ed15b2173aff75151b094761d851d58cfe13ed5 /vcl | |
parent | 4bc99ab1ac4bed1df66d1df8b1ca3168e7e3d8f4 (diff) |
ditch the application per-language IsAutoMnemonicEnabled setting
Change-Id: I9734ada09edb6544a332893a7c5d31730b0d081d
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svapp.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 99ab7933e6d6..78c494d70405 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -1399,20 +1399,6 @@ bool Application::IsAutoHelpIdEnabled() return ImplGetSVData()->maHelpData.mbAutoHelpId; } -void Application::EnableAutoMnemonic( bool bEnabled ) -{ - AllSettings aSettings = GetSettings(); - StyleSettings aStyle = aSettings.GetStyleSettings(); - aStyle.SetAutoMnemonic( bEnabled ); - aSettings.SetStyleSettings( aStyle ); - SetSettings( aSettings ); -} - -bool Application::IsAutoMnemonicEnabled() -{ - return GetSettings().GetStyleSettings().GetAutoMnemonic(); -} - OUString Application::GetToolkitName() { ImplSVData* pSVData = ImplGetSVData(); |