summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-12-30 11:23:02 +0100
committerJulien Nabet <serval2412@yahoo.fr>2021-01-01 11:15:38 +0100
commit7c565e42be7335379b78f313eaffb06123a854e6 (patch)
tree29b1fc04c8567200e6cdae693021e0ba5f999931 /sw
parent1c0565ccc9e0a787dd2bd7b8c88f0d36f98c170b (diff)
Typo in code 'Reapeat'->'Repeat'
Change-Id: I50bd9648584a60feccc115b4e58dff896e1284be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108499 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/table/convert.cxx8
-rw-r--r--sw/source/uibase/inc/convert.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/table/convert.cxx b/sw/source/ui/table/convert.cxx
index 3684ba04ff56..52bc85e2a46b 100644
--- a/sw/source/ui/table/convert.cxx
+++ b/sw/source/ui/table/convert.cxx
@@ -157,8 +157,8 @@ SwConvertTableDlg::SwConvertTableDlg(SwView& rView, bool bToTable)
m_xDontSplitCB->set_active(!(nInsTableFlags & SwInsertTableFlags::SplitLayout));
m_xHeaderCB->connect_clicked(LINK(this, SwConvertTableDlg, CheckBoxHdl));
- m_xRepeatHeaderCB->connect_clicked(LINK(this, SwConvertTableDlg, ReapeatHeaderCheckBoxHdl));
- ReapeatHeaderCheckBoxHdl(*m_xRepeatHeaderCB);
+ m_xRepeatHeaderCB->connect_clicked(LINK(this, SwConvertTableDlg, RepeatHeaderCheckBoxHdl));
+ RepeatHeaderCheckBoxHdl(*m_xRepeatHeaderCB);
CheckBoxHdl(*m_xHeaderCB);
}
@@ -189,10 +189,10 @@ IMPL_LINK(SwConvertTableDlg, BtnHdl, weld::Button&, rButton, void)
IMPL_LINK_NOARG(SwConvertTableDlg, CheckBoxHdl, weld::Button&, void)
{
m_xRepeatHeaderCB->set_sensitive(m_xHeaderCB->get_active());
- ReapeatHeaderCheckBoxHdl(*m_xRepeatHeaderCB);
+ RepeatHeaderCheckBoxHdl(*m_xRepeatHeaderCB);
}
-IMPL_LINK_NOARG(SwConvertTableDlg, ReapeatHeaderCheckBoxHdl, weld::Button&, void)
+IMPL_LINK_NOARG(SwConvertTableDlg, RepeatHeaderCheckBoxHdl, weld::Button&, void)
{
bool bEnable = m_xHeaderCB->get_active() && m_xRepeatHeaderCB->get_active();
m_xRepeatRows->set_sensitive(bEnable);
diff --git a/sw/source/uibase/inc/convert.hxx b/sw/source/uibase/inc/convert.hxx
index 103490eac0f9..cc7929e9fb64 100644
--- a/sw/source/uibase/inc/convert.hxx
+++ b/sw/source/uibase/inc/convert.hxx
@@ -54,7 +54,7 @@ class SwConvertTableDlg : public SfxDialogController
DECL_LINK(AutoFormatHdl, weld::Button&, void);
DECL_LINK(BtnHdl, weld::Button&, void);
DECL_LINK(CheckBoxHdl, weld::Button&, void);
- DECL_LINK(ReapeatHeaderCheckBoxHdl, weld::Button&, void);
+ DECL_LINK(RepeatHeaderCheckBoxHdl, weld::Button&, void);
public:
SwConvertTableDlg(SwView& rView, bool bToTable);