diff options
author | Muhammet Kara <muhammet.kara@collabora.com> | 2019-06-09 01:09:56 +0200 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@collabora.com> | 2019-06-09 19:18:29 +0200 |
commit | b05ecd7aa2b6af690fedd3b7396cdeefd627201c (patch) | |
tree | 281a079da06ee1c8bdc385e72f955eb7c68da884 /cui | |
parent | 13e5d52fc37f9283edd8a055d6b86108701182f1 (diff) |
Initialize aFilterAllStr in the initializer list
Change-Id: Id160f229df455d585ce2f76ef881c858d875e21d
Reviewed-on: https://gerrit.libreoffice.org/73726
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 78351cdd187c..d12c2a97bad5 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -824,6 +824,7 @@ SfxAcceleratorConfigPage::SfxAcceleratorConfigPage(TabPageParent pParent, const , m_pMacroInfoItem() , aLoadAccelConfigStr(CuiResId(RID_SVXSTR_LOADACCELCONFIG)) , aSaveAccelConfigStr(CuiResId(RID_SVXSTR_SAVEACCELCONFIG)) + , aFilterAllStr(SfxResId(STR_SFX_FILTERNAME_ALL)) , aFilterCfgStr(CuiResId(RID_SVXSTR_FILTERNAME_CFG)) , m_bStylesInfoInitialized(false) , m_xGlobal() @@ -852,8 +853,6 @@ SfxAcceleratorConfigPage::SfxAcceleratorConfigPage(TabPageParent pParent, const aSize = LogicToPixel(Size(80, 91), MapMode(MapUnit::MapAppFont)); m_xKeyBox->set_size_request(aSize.Width(), aSize.Height()); - aFilterAllStr = SfxResId( STR_SFX_FILTERNAME_ALL ); - // install handler functions m_xChangeButton->connect_clicked( LINK( this, SfxAcceleratorConfigPage, ChangeHdl )); m_xRemoveButton->connect_clicked( LINK( this, SfxAcceleratorConfigPage, RemoveHdl )); |