summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-29 11:10:22 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-31 14:35:42 +0200
commit4c08f58f58e0f01ea25f1ab436046a91314d1a31 (patch)
tree92fd6c3f30bad66708c5112c77940195c8914747
parent347c475d6dd5452d6d71e1ce3a57bb6dab2e0ad4 (diff)
Fix typo in code
Change-Id: I9c6d1a277da87f30f43b6108d588cde9a3f0e783 Reviewed-on: https://gerrit.libreoffice.org/78266 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/svx/fontwork.hxx2
-rw-r--r--svx/source/dialog/fontwork.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/fontwork.hxx b/include/svx/fontwork.hxx
index 510a39c8fbd6..3ceea23e37b4 100644
--- a/include/svx/fontwork.hxx
+++ b/include/svx/fontwork.hxx
@@ -130,7 +130,7 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxFontWorkDialog : public SfxDockingWindow
DECL_LINK( SelectShadowHdl_Impl, ToolBox *, void );
DECL_LINK( ModifyInputHdl_Impl, Edit&, void );
- DECL_LINK( InputTimoutHdl_Impl, Timer *, void );
+ DECL_LINK( InputTimeoutHdl_Impl, Timer *, void );
DECL_LINK( ColorSelectHdl_Impl, SvxColorListBox&, void );
diff --git a/svx/source/dialog/fontwork.cxx b/svx/source/dialog/fontwork.cxx
index 211be0550022..558f5514ce95 100644
--- a/svx/source/dialog/fontwork.cxx
+++ b/svx/source/dialog/fontwork.cxx
@@ -280,7 +280,7 @@ SvxFontWorkDialog::SvxFontWorkDialog(SfxBindings *pBindinx,
m_pShadowColorLB->SetSelectHdl( LINK(this, SvxFontWorkDialog, ColorSelectHdl_Impl) );
aInputIdle.SetPriority(TaskPriority::LOWEST);
- aInputIdle.SetInvokeHandler(LINK(this, SvxFontWorkDialog, InputTimoutHdl_Impl));
+ aInputIdle.SetInvokeHandler(LINK(this, SvxFontWorkDialog, InputTimeoutHdl_Impl));
}
SvxFontWorkDialog::~SvxFontWorkDialog()
@@ -745,7 +745,7 @@ IMPL_LINK_NOARG(SvxFontWorkDialog, ModifyInputHdl_Impl, Edit&, void)
aInputIdle.Start();
}
-IMPL_LINK_NOARG(SvxFontWorkDialog, InputTimoutHdl_Impl, Timer *, void)
+IMPL_LINK_NOARG(SvxFontWorkDialog, InputTimeoutHdl_Impl, Timer *, void)
{
// Possibly set the Metric system again. This should be done with a
// listen, this is however not possible at the moment due to compatibility