[Libreoffice-commits] core.git: include/svx svx/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 31 12:36:19 UTC 2019
include/svx/fontwork.hxx | 2 +-
svx/source/dialog/fontwork.cxx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 4c08f58f58e0f01ea25f1ab436046a91314d1a31
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Thu Aug 29 11:10:22 2019 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Aug 31 14:35:42 2019 +0200
Fix typo in code
Change-Id: I9c6d1a277da87f30f43b6108d588cde9a3f0e783
Reviewed-on: https://gerrit.libreoffice.org/78266
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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
More information about the Libreoffice-commits
mailing list