diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-23 19:47:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-24 20:18:57 +0200 |
commit | 4fef4c6a3de4c593499ba4338d4ecf3bde1c0263 (patch) | |
tree | ccf3fe1779571097f48b95afbcc4017518a1ebee /sc/source/ui/navipi | |
parent | ff8addee9c2c43c6ec064395e909665932e10899 (diff) |
typo: NavigatoeDlg->NavigatorDlg
Change-Id: Ied615268001b580a3f51726cd0e57189a00e3c60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114570
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/ui/navipi')
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index 2d68a98a7aa6..6f4d92198934 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -126,7 +126,7 @@ ScContentTree::ScContentTree(std::unique_ptr<weld::TreeView> xTreeView, ScNaviga , nRootType(ScContentId::ROOT) , bHiddenDoc(false) , pHiddenDocument(nullptr) - , bisInNavigatoeDlg(false) + , bIsInNavigatorDlg(false) , m_bFreeze(false) , m_nAsyncMouseReleaseId(nullptr) { @@ -456,7 +456,7 @@ IMPL_LINK(ScContentTree, KeyInputHdl, const KeyEvent&, rKEvt, bool) } } //Make KEY_SPACE has same function as DoubleClick - if ( bisInNavigatoeDlg ) + if ( bIsInNavigatorDlg ) { if(aCode.GetCode() == KEY_SPACE ) { @@ -869,7 +869,7 @@ constexpr int MAX_TREE_NODES = 1000; void ScContentTree::GetDrawNames( ScContentId nType ) { - if (!bisInNavigatoeDlg) + if (!bIsInNavigatorDlg) return; if ( nRootType != ScContentId::ROOT && nRootType != nType ) // hidden ? |