diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-31 16:15:17 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-09-01 16:59:29 +0200 |
commit | 9146658c0108120c91ce6f759e37b9fa64e47660 (patch) | |
tree | 0796f8f35488c92f340f7d0ccdbf459a9a20e3eb /svx | |
parent | 59fee59094a9bf9e4bcd729139f9a43ccea3d35c (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I8336c2a639a1d45c8370fd13204896f3f1494b4f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101801
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmshell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx index 31170e1ec6d6..14f5fb4577c9 100644 --- a/svx/source/form/fmshell.cxx +++ b/svx/source/form/fmshell.cxx @@ -146,7 +146,7 @@ void FmFormShell::InitInterface_Impl() SfxShellFeature::FormShowTextControlBar); GetStaticInterface()->RegisterChildWindow(SID_FM_ADD_FIELD, false, SfxShellFeature::FormShowField); - GetStaticInterface()->RegisterChildWindow(SID_FM_SHOW_PROPERTIES, false, SfxShellFeature::FormShowProperies); + GetStaticInterface()->RegisterChildWindow(SID_FM_SHOW_PROPERTIES, false, SfxShellFeature::FormShowproperties); GetStaticInterface()->RegisterChildWindow(SID_FM_SHOW_FMEXPLORER, false, SfxShellFeature::FormShowExplorer); GetStaticInterface()->RegisterChildWindow(SID_FM_FILTER_NAVIGATOR, false, SfxShellFeature::FormShowFilterNavigator); GetStaticInterface()->RegisterChildWindow(SID_FM_SHOW_DATANAVIGATOR, false, SfxShellFeature::FormShowDataNavigator); @@ -292,7 +292,7 @@ bool FmFormShell::HasUIFeature(SfxShellFeature nFeature) const { bResult = m_bDesignMode && m_pFormView && m_bHasForms; } - else if (nFeature & SfxShellFeature::FormShowProperies) + else if (nFeature & SfxShellFeature::FormShowproperties) { bResult = m_bDesignMode && m_pFormView && m_bHasForms; } |