cui/source/options/appearance.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 111d38aade84be9bd79123f406b630cfd34eab30 Author: Andrea Gelmini <[email protected]> AuthorDate: Fri May 30 12:22:34 2025 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Fri May 30 16:58:34 2025 +0200 Fix typo Change-Id: I3c8aa60f1a0b9509bbac012b3af731a113805b58 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186035 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/cui/source/options/appearance.cxx b/cui/source/options/appearance.cxx index e697a9cfc968..b019e62e3870 100644 --- a/cui/source/options/appearance.cxx +++ b/cui/source/options/appearance.cxx @@ -396,7 +396,7 @@ void SvxAppearanceTabPage::InitThemes() LINK(this, SvxAppearanceTabPage, UseOnlyWhiteDocBackgroundHdl)); m_xUseOnlyWhiteDocBackground->set_active(ThemeColors::UseOnlyWhiteDocBackground()); - // connnect callbacks for bitmap controls + // connect callbacks for bitmap controls m_xUseBmpForAppBack->connect_toggled(LINK(this, SvxAppearanceTabPage, UseBmpForAppBackHdl)); m_xBitmapDropDown->connect_changed(LINK(this, SvxAppearanceTabPage, BitmapDropDownHdl)); m_xBitmapDrawTypeDropDown->connect_changed( @@ -405,7 +405,7 @@ void SvxAppearanceTabPage::InitThemes() // initialize bitmap controls m_xUseBmpForAppBack->set_active(ThemeColors::UseBmpForAppBack()); - // insert bitmap entrires + // insert bitmap entries for (size_t i = 0; i < getBitmapList().size(); ++i) m_xBitmapDropDown->append(getBitmapList()[i].aRawString, getBitmapList()[i].aTranslatedString);
