summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Raykowski <raykowj@gmail.com>2018-01-14 11:24:10 -0900
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-01-15 22:29:11 +0100
commit77acf66a3414c46edecfbc04b65e4a507eb857cb (patch)
tree157358b6c63550e3ebd609fb9db7c9eb8209b179
parent311ea730cb225bca167af2e4111445608a14a263 (diff)
change Not to Dont in tdf#36308 fix
Change-Id: I05806eea3363b7363d7a377277c63785aadc5386 Reviewed-on: https://gerrit.libreoffice.org/47870 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
-rw-r--r--include/svtools/treelistbox.hxx2
-rw-r--r--svtools/source/contnr/treelistbox.cxx2
-rw-r--r--sw/source/uibase/utlui/content.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx
index 12bfa4a11439..adf8a079a2a2 100644
--- a/include/svtools/treelistbox.hxx
+++ b/include/svtools/treelistbox.hxx
@@ -649,7 +649,7 @@ public:
void SetSublistOpenWithReturn(); // open/close sublist with return/enter
void SetSublistOpenWithLeftRight(); // open/close sublist with cursor left/right
- void SetSublistNotOpenWithDoubleClick(); // do not open/close sublist with mouse double click on entry
+ void SetSublistDontOpenWithDoubleClick(); // do not open/close sublist with mouse double click on entry
void EnableInplaceEditing( bool bEnable );
// Edits the Entry's first StringItem, 0 == Cursor
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx
index 5f1c37606785..1a8c07d521a6 100644
--- a/svtools/source/contnr/treelistbox.cxx
+++ b/svtools/source/contnr/treelistbox.cxx
@@ -1434,7 +1434,7 @@ void SvTreeListBox::SetSublistOpenWithLeftRight()
pImpl->bSubLstOpLR = true;
}
-void SvTreeListBox::SetSublistNotOpenWithDoubleClick()
+void SvTreeListBox::SetSublistDontOpenWithDoubleClick()
{
pImpl->bSubLstOpDblClick = false;
}
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index f58c15a6e358..df7f1bbb29c1 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -858,7 +858,7 @@ SwContentTree::SwContentTree(vcl::Window* pParent, SwNavigationPI* pDialog)
, m_bViewHasChanged(false)
, m_bIsKeySpace(false)
{
- SetSublistNotOpenWithDoubleClick();
+ SetSublistDontOpenWithDoubleClick();
SetHelpId(HID_NAVIGATOR_TREELIST);
SetNodeDefaultImages();