cui/source/inc/treeopt.hxx | 2 +- cui/source/options/treeopt.cxx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 81f27d3d8a8691e54098c6f1bc0f6fa84d63d1d4 Author: Ilmari Lauhakangas <[email protected]> AuthorDate: Sun Mar 1 13:32:51 2026 +0200 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Sun Mar 1 13:53:58 2026 +0100 Fix typo Change-Id: I29994dec6fdeaa02b32ada00b887a75f9727126e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200699 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <[email protected]> diff --git a/cui/source/inc/treeopt.hxx b/cui/source/inc/treeopt.hxx index 8b739eeb23cd..6ff3ca0449ac 100644 --- a/cui/source/inc/treeopt.hxx +++ b/cui/source/inc/treeopt.hxx @@ -137,7 +137,7 @@ private: Timer m_aUpdateDataTimer; i18nutil::SearchOptions2 m_options; - bool bIsFirtsInitialize; + bool bIsFirstInitialize; std::vector<OptionsPageIdInfo*> m_aTreePageIds; typedef std::vector<std::pair<sal_uInt16, std::vector<sal_uInt16>>> VectorOfMatchedIds; diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index ec6549823c52..fd8b490f0be7 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -458,7 +458,7 @@ OfaTreeOptionsDialog::OfaTreeOptionsDialog(weld::Window* pParent, bool fromExten , m_xSearchEdit(m_xBuilder->weld_entry(u"searchEntry"_ustr)) , m_pParent(pParent) , m_aUpdateDataTimer("OfaTreeOptionsDialog UpdateDataTimer") - , bIsFirtsInitialize(true) + , bIsFirstInitialize(true) , sTitle(m_xDialog->get_title()) , bForgetSelection(false) , bIsFromExtensionManager(fromExtensionManager) @@ -790,7 +790,7 @@ IMPL_LINK_NOARG(OfaTreeOptionsDialog, ImplUpdateDataHdl, Timer*, void) // Pause redraw xTreeLB->freeze(); - if (bIsFirtsInitialize) + if (bIsFirstInitialize) { m_xSearchEdit->freeze(); xTreeLB->hide(); @@ -799,7 +799,7 @@ IMPL_LINK_NOARG(OfaTreeOptionsDialog, ImplUpdateDataHdl, Timer*, void) m_xSearchEdit->thaw(); xTreeLB->show(); - bIsFirtsInitialize = false; + bIsFirstInitialize = false; } // Apply the search filter
