[Libreoffice-commits] core.git: 2 commits - sc/source sd/source sw/source winaccessibility/source
Julien Nabet
serval2412 at yahoo.fr
Tue Feb 3 12:42:48 PST 2015
sc/source/ui/Accessibility/AccessibleDocument.cxx | 2 -
sd/source/ui/slidesorter/controller/SlsFocusManager.cxx | 2 -
sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx | 2 -
sw/source/ui/fldui/fldfunc.cxx | 2 -
sw/source/ui/frmdlg/column.cxx | 2 -
sw/source/uibase/inc/wrtsh.hxx | 2 -
sw/source/uibase/uno/unotxvw.cxx | 2 -
winaccessibility/source/UAccCOM/AccHypertext.cxx | 14 ++++++------
winaccessibility/source/UAccCOM/AccText.cxx | 12 +++++-----
9 files changed, 20 insertions(+), 20 deletions(-)
New commits:
commit 52d1de87e9a77fc7929309b0365bd786406ce022
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Tue Feb 3 21:40:51 2015 +0100
Typo accpet->accept
Change-Id: Ib9a5c131701e8240779be43af015ff4943d68ae8
diff --git a/winaccessibility/source/UAccCOM/AccHypertext.cxx b/winaccessibility/source/UAccCOM/AccHypertext.cxx
index a141699..3e16c6e 100644
--- a/winaccessibility/source/UAccCOM/AccHypertext.cxx
+++ b/winaccessibility/source/UAccCOM/AccHypertext.cxx
@@ -84,10 +84,10 @@ STDMETHODIMP CAccHypertext::get_characterCount(long * nCharacters)
/**
* Get character extents.
* @param offset Offset.
- * @param x Variant to accpet x position.
- * @param y Variant to accpet y position.
- * @param width Variant to accpet width.
- * @param Height Variant to accpet height.
+ * @param x Variant to accept x position.
+ * @param y Variant to accept y position.
+ * @param width Variant to accept width.
+ * @param Height Variant to accept height.
* @return Result.
*/
STDMETHODIMP CAccHypertext::get_characterExtents(long offset, IA2CoordinateType coordType, long * x, long * y, long * width, long * height)
@@ -98,7 +98,7 @@ STDMETHODIMP CAccHypertext::get_characterExtents(long offset, IA2CoordinateType
/**
* Get selections count.
- * @param nSelections Variant to accpet selections count.
+ * @param nSelections Variant to accept selections count.
* @return Result.
*/
STDMETHODIMP CAccHypertext::get_nSelections(long * nSelections)
@@ -273,7 +273,7 @@ STDMETHODIMP CAccHypertext::scrollSubstringTo(long startIndex, long endIndex,enu
/**
* Get hyperlink count.
- * @param hyperlinkCount Variant to accpet hyperlink count.
+ * @param hyperlinkCount Variant to accept hyperlink count.
* @return Result.
*/
STDMETHODIMP CAccHypertext::get_nHyperlinks(long *hyperlinkCount)
diff --git a/winaccessibility/source/UAccCOM/AccText.cxx b/winaccessibility/source/UAccCOM/AccText.cxx
index c854fed..a8cd871 100644
--- a/winaccessibility/source/UAccCOM/AccText.cxx
+++ b/winaccessibility/source/UAccCOM/AccText.cxx
@@ -76,10 +76,10 @@ STDMETHODIMP CAccText::get_characterCount(long * nCharacters)
/**
* Get character extents.
* @param offset Offset.
- * @param x Variant to accpet x position.
- * @param y Variant to accpet y position.
- * @param width Variant to accpet width.
- * @param Height Variant to accpet height.
+ * @param x Variant to accept x position.
+ * @param y Variant to accept y position.
+ * @param width Variant to accept width.
+ * @param Height Variant to accept height.
* @return Result.
*/
STDMETHODIMP CAccText::get_characterExtents(long offset, IA2CoordinateType coordType, long * x, long * y, long * width, long * height)
@@ -90,7 +90,7 @@ STDMETHODIMP CAccText::get_characterExtents(long offset, IA2CoordinateType coord
/**
* Get selections count.
- * @param nSelections Variant to accpet selections count.
+ * @param nSelections Variant to accept selections count.
* @return Result.
*/
STDMETHODIMP CAccText::get_nSelections(long * nSelections)
commit d7d0121a10c679fca2e0466fb54697f8433282aa
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Tue Feb 3 21:31:28 2015 +0100
Typo: selction/slection -> selection
Change-Id: I3f405d9525d3afb6534166fd733cabf7779a2846
diff --git a/sc/source/ui/Accessibility/AccessibleDocument.cxx b/sc/source/ui/Accessibility/AccessibleDocument.cxx
index ea2688e..fb17833 100644
--- a/sc/source/ui/Accessibility/AccessibleDocument.cxx
+++ b/sc/source/ui/Accessibility/AccessibleDocument.cxx
@@ -980,7 +980,7 @@ bool ScChildrenShapes::FindSelectedShapesChanges(const uno::Reference<drawing::X
{
sal_Int8 nComp(0);
if (aXShapesItr == aXShapesEndItr)
- nComp = -1; // simulate that the Shape is lower, so the selction state will be removed
+ nComp = -1; // simulate that the Shape is lower, so the selection state will be removed
else
nComp = Compare(*aDataItr, *aXShapesItr);
if (nComp == 0)
diff --git a/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx b/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
index 2147385..1b9a3dc 100644
--- a/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
@@ -263,7 +263,7 @@ void FocusManager::NotifyFocusChangeListeners (void) const
// Create a copy of the listener list to be safe when that is modified.
::std::vector<Link> aListeners (maFocusChangeListeners);
- // Tell the slection change listeners that the selection has changed.
+ // Tell the selection change listeners that the selection has changed.
::std::vector<Link>::iterator iListener (aListeners.begin());
::std::vector<Link>::iterator iEnd (aListeners.end());
for (; iListener!=iEnd; ++iListener)
diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
index 0890306..13246b7 100644
--- a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
@@ -235,7 +235,7 @@ void SelectionManager::SelectionHasChanged (const bool bMakeSelectionVisible)
if (pDescriptor.get() != NULL)
pViewShell->UpdatePreview(pDescriptor->GetPage());
- // Tell the slection change listeners that the selection has changed.
+ // Tell the selection change listeners that the selection has changed.
::std::vector<Link>::iterator iListener (maSelectionChangeListeners.begin());
::std::vector<Link>::iterator iEnd (maSelectionChangeListeners.end());
for (; iListener!=iEnd; ++iListener)
diff --git a/sw/source/ui/fldui/fldfunc.cxx b/sw/source/ui/fldui/fldfunc.cxx
index df473e7..b190d69 100644
--- a/sw/source/ui/fldui/fldfunc.cxx
+++ b/sw/source/ui/fldui/fldfunc.cxx
@@ -458,7 +458,7 @@ void SwFldFuncPage::UpdateSubType()
{
const sal_uInt16 nTypeId = (sal_uInt16)reinterpret_cast<sal_uLong>(m_pTypeLB->GetEntryData(GetTypeSel()));
- // fill Selction-Listbox
+ // fill Selection-Listbox
m_pSelectionLB->SetUpdateMode(false);
m_pSelectionLB->Clear();
diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx
index 8839e65..5a94ba4 100644
--- a/sw/source/ui/frmdlg/column.cxx
+++ b/sw/source/ui/frmdlg/column.cxx
@@ -351,7 +351,7 @@ IMPL_LINK_NOARG(SwColumnDlg, OkHdl)
rWrtShell.StartAction();
rWrtShell.Push();
rWrtShell.SetFlyFrmAttr( aTmp );
- // undo the frame selction again
+ // undo the frame selection again
if(rWrtShell.IsFrmSelected())
{
rWrtShell.UnSelectFrm();
diff --git a/sw/source/uibase/inc/wrtsh.hxx b/sw/source/uibase/inc/wrtsh.hxx
index 024450c..cd394fa 100644
--- a/sw/source/uibase/inc/wrtsh.hxx
+++ b/sw/source/uibase/inc/wrtsh.hxx
@@ -396,7 +396,7 @@ typedef bool (SwWrtShell:: *FNSimpleMove)();
//"Handler" for changes at DrawView - for controls.
virtual void DrawSelChanged( ) SAL_OVERRIDE;
- // jump to bookmark and set the "selctions-flags" correctly again
+ // jump to bookmark and set the "selections-flags" correctly again
bool GotoMark( const ::sw::mark::IMark* const pMark );
bool GotoMark( const ::sw::mark::IMark* const pMark, bool bSelect, bool bStart );
bool GotoMark( const OUString& rName );
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index f3696f6..37b835c 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -873,7 +873,7 @@ SwXTextViewCursor::~SwXTextViewCursor()
{
}
-// used to determine if there is a text selction or not.
+// used to determine if there is a text selection or not.
// If there is no text selection the functions that need a working
// cursor will be disabled (throw RuntimeException). This will be the case
// for the following interfaces:
diff --git a/winaccessibility/source/UAccCOM/AccHypertext.cxx b/winaccessibility/source/UAccCOM/AccHypertext.cxx
index df39f21..a141699 100644
--- a/winaccessibility/source/UAccCOM/AccHypertext.cxx
+++ b/winaccessibility/source/UAccCOM/AccHypertext.cxx
@@ -97,8 +97,8 @@ STDMETHODIMP CAccHypertext::get_characterExtents(long offset, IA2CoordinateType
}
/**
- * Get slections count.
- * @param nSelections Variant to accpet slections count.
+ * Get selections count.
+ * @param nSelections Variant to accpet selections count.
* @return Result.
*/
STDMETHODIMP CAccHypertext::get_nSelections(long * nSelections)
diff --git a/winaccessibility/source/UAccCOM/AccText.cxx b/winaccessibility/source/UAccCOM/AccText.cxx
index 84e98c2..c854fed 100644
--- a/winaccessibility/source/UAccCOM/AccText.cxx
+++ b/winaccessibility/source/UAccCOM/AccText.cxx
@@ -89,8 +89,8 @@ STDMETHODIMP CAccText::get_characterExtents(long offset, IA2CoordinateType coord
}
/**
- * Get slections count.
- * @param nSelections Variant to accpet slections count.
+ * Get selections count.
+ * @param nSelections Variant to accpet selections count.
* @return Result.
*/
STDMETHODIMP CAccText::get_nSelections(long * nSelections)
More information about the Libreoffice-commits
mailing list