summaryrefslogtreecommitdiffstats
path: root/svx/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-01-02 15:51:30 +0100
committerEike Rathke <erack@redhat.com>2015-01-02 20:23:51 +0000
commit3a2b1af87d629a780f0e98559fb8b409378a80c7 (patch)
treeecf27171a38a2d6d4b05b4acd42e8e98b7f7d70a /svx/source
parentlinguistic: fix gcc-4.8 build (diff)
downloadcore-3a2b1af87d629a780f0e98559fb8b409378a80c7.tar.gz
core-3a2b1af87d629a780f0e98559fb8b409378a80c7.zip
Fix simple typos.
Change-Id: I1fdbe47ed7a6e05d2cf20f4c296bffad4bbc6599 Reviewed-on: https://gerrit.libreoffice.org/13719 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/form/navigatortree.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx
index 5f673cc3a31d..879e390f084f 100644
--- a/svx/source/form/navigatortree.cxx
+++ b/svx/source/form/navigatortree.cxx
@@ -1678,7 +1678,7 @@ namespace svxform
if ((nSelectedEntries == 0) || bRootSelected) // still root ?
return; // -> only selected element -> leave
- DBG_ASSERT(!m_bPrevSelectionMixed, "NavigatorTree::DeleteSelection() : delete permitted if mark and selection are inconsistant");
+ DBG_ASSERT(!m_bPrevSelectionMixed, "NavigatorTree::DeleteSelection() : delete permitted if mark and selection are inconsistent");
// i need the FormModel later
FmFormShell* pFormShell = GetNavModel()->GetFormShell();
@@ -1688,10 +1688,10 @@ namespace svxform
if (!pFormModel)
return;
- // now i have to safeguard the DeleteList : if you delete a form and a dependent element
- // - in this order - than the SvLBoxEntryPtr of the dependent element is allready invlaid,
- // when it should be deleted ... you have to prohibit this GPF, that of course would happen,
- // so i take the 'normalized' list
+ // now I have to safeguard the DeleteList: if you delete a form and a dependent element
+ // - in this order - than the SvLBoxEntryPtr of the dependent element is already invalid,
+ // when it should be deleted... you have to prohibit this GPF, that of course would happen,
+ // so I take the 'normalized' list
CollectSelectionData( SDI_NORMALIZED );
// see below for why we need this mapping from models to shapes
@@ -1901,7 +1901,7 @@ namespace svxform
{
FmEntryDataArray::iterator it = arredToSelect.find(pCurrent);
if ( it != arredToSelect.end() )
- { // entry allready selected, but also in SelectList
+ { // entry already selected, but also in SelectList
// remove it from there
arredToSelect.erase(it);
} else