diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-12 10:12:53 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-07-12 10:32:11 +0200 |
commit | a64402bbdc246c52097acf79e14d7bf58db65217 (patch) | |
tree | 829a8c758ed9ad91554823503364749a7e55b62a /sw | |
parent | 0a3a24a27bd7ed6792ec49f16a10ea2a05f1402a (diff) |
Fix typos
Change-Id: I20fe5f960c1df94c0b53e7edf33194e60f69bc74
Reviewed-on: https://gerrit.libreoffice.org/75472
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/bookmrk.hxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/utlui/content.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/inc/bookmrk.hxx b/sw/source/core/inc/bookmrk.hxx index 0c3acdb84ae5..b7f292fa28b0 100644 --- a/sw/source/core/inc/bookmrk.hxx +++ b/sw/source/core/inc/bookmrk.hxx @@ -248,7 +248,7 @@ namespace sw { virtual void ReleaseDoc(SwDoc* const pDoc) override; }; - // Non text fieldmarks has has no content between the start and end marks. + // Non text fieldmarks have no content between the start and end marks. class NonTextFieldmark : public Fieldmark { diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx index 8eab31e8bb64..e728024d1c7a 100644 --- a/sw/source/uibase/utlui/content.cxx +++ b/sw/source/uibase/utlui/content.cxx @@ -1106,12 +1106,12 @@ void SwContentTree::StartDrag( sal_Int8 nAction, const Point& rPosPixel ) // Only move drag entry and continuous selected siblings: m_aDndOutlinesSelected.clear(); SvTreeListEntry* pEntry = GetEntry(rPosPixel); - // Find first selected of continous siblings + // Find first selected of continuous siblings while (pEntry && IsSelected(pEntry->PrevSibling())) { pEntry = pEntry->PrevSibling(); } - // Record continous selected siblings + // Record continuous selected siblings if (pEntry) { m_aDndOutlinesSelected.push_back(pEntry); |