[Libreoffice-commits] core.git: cui/qa editeng/source include/comphelper include/svx sc/source starmath/source svx/source sw/source
Julien Nabet
serval2412 at yahoo.fr
Sun Feb 12 07:44:15 UTC 2017
cui/qa/unit/data/cui-dialogs-test.txt | 6 +++---
editeng/source/accessibility/AccessibleEditableTextPara.cxx | 2 +-
include/comphelper/accessiblewrapper.hxx | 2 +-
include/svx/AccessibleShape.hxx | 2 +-
sc/source/core/data/drwlayer.cxx | 2 +-
starmath/source/accessibility.cxx | 4 ++--
starmath/source/accessibility.hxx | 2 +-
svx/source/accessibility/AccessibleShape.cxx | 4 ++--
sw/source/core/access/accdoc.cxx | 2 +-
sw/source/core/access/accnotextframe.cxx | 2 +-
sw/source/core/access/accpara.cxx | 4 ++--
sw/source/core/access/accpara.hxx | 4 ++--
12 files changed, 18 insertions(+), 18 deletions(-)
New commits:
commit 2b21ac16c2d8419d9747450898d714ac15d7cca0
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Feb 11 22:30:16 2017 +0100
Various typos on accessible
Change-Id: Id28a4a2cbbcec10a7cc9cb40ad208d575352039b
Reviewed-on: https://gerrit.libreoffice.org/34161
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/cui/qa/unit/data/cui-dialogs-test.txt b/cui/qa/unit/data/cui-dialogs-test.txt
index c8cc78d..64d4f29 100644
--- a/cui/qa/unit/data/cui-dialogs-test.txt
+++ b/cui/qa/unit/data/cui-dialogs-test.txt
@@ -38,9 +38,9 @@
# cui/ui/thesaurus.ui <- problems under Linux
# this is part 1. in order to help the build time when building all
-# lang, the list of ui is split in mutiple part to balance the run time
-# or all the tests, which improve the overal elapsed time
-# of make screenshoot on big machines
+# lang, the list of ui is split in multiple parts to balance the run time
+# or all the tests, which improve the overall elapsed time
+# of make screenshot on big machines
# covering a to e
diff --git a/editeng/source/accessibility/AccessibleEditableTextPara.cxx b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
index b741fdc..50bb53b 100644
--- a/editeng/source/accessibility/AccessibleEditableTextPara.cxx
+++ b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
@@ -630,7 +630,7 @@ namespace accessibility
{
uno::Any aRet;
- // must provide XAccesibleText by hand, since it comes publicly inherited by XAccessibleEditableText
+ // must provide XAccessibleText by hand, since it comes publicly inherited by XAccessibleEditableText
if ( rType == cppu::UnoType<XAccessibleText>::get())
{
uno::Reference< XAccessibleText > aAccText = static_cast< XAccessibleEditableText * >(this);
diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx
index d7b0a00..b37e5a0 100644
--- a/include/comphelper/accessiblewrapper.hxx
+++ b/include/comphelper/accessiblewrapper.hxx
@@ -130,7 +130,7 @@ namespace comphelper
/** Helper for wrapping an XAccessibleContext by aggregating a proxy for it.
<p>This class does not have own ref counting. In addition, it does not implement
- the XAccesibleContext interface, but provides all the methods from this interface
+ the XAccessibleContext interface, but provides all the methods from this interface
which must be implemented using the inner context (such as getAccessibleChild*).</p>
<p>Children of the aggregated XAccessibleContext are wrapped, too.</p>
diff --git a/include/svx/AccessibleShape.hxx b/include/svx/AccessibleShape.hxx
index 310751d..0c40da3 100644
--- a/include/svx/AccessibleShape.hxx
+++ b/include/svx/AccessibleShape.hxx
@@ -319,7 +319,7 @@ public:
virtual css::uno::Reference< css::accessibility::XAccessibleHyperlink >
SAL_CALL getHyperLink( sal_Int32 nLinkIndex ) override;
virtual sal_Int32 SAL_CALL getHyperLinkIndex( sal_Int32 nCharIndex ) override;
- //===== XAccesibleText ==================================================
+ //===== XAccessibleText ==================================================
virtual sal_Int32 SAL_CALL getCaretPosition( ) override;
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) override;
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) override;//Shen Zhen Jie changed sal_Unicode to sal_uInt32; change back to sal_Unicode
diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index 3689aab..4d3b093 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -825,7 +825,7 @@ void ScDrawLayer::RecalcPos( SdrObject* pObj, ScDrawObjData& rData, bool bNegati
}
else
{
- // Prevent mutiple broadcasts during the series of changes.
+ // Prevent multiple broadcasts during the series of changes.
SdrDelayBroadcastObjectChange aDelayBroadcastObjectChange(*pObj);
bool bCanResize = bValid2 && !pObj->IsResizeProtect();
diff --git a/starmath/source/accessibility.cxx b/starmath/source/accessibility.cxx
index 59875fc..6e23b4a 100644
--- a/starmath/source/accessibility.cxx
+++ b/starmath/source/accessibility.cxx
@@ -149,13 +149,13 @@ void SmGraphicAccessible::ClearWin()
}
void SmGraphicAccessible::LaunchEvent(
- const sal_Int16 nAccesibleEventId,
+ const sal_Int16 nAccessibleEventId,
const uno::Any &rOldVal,
const uno::Any &rNewVal)
{
AccessibleEventObject aEvt;
aEvt.Source = static_cast<XAccessible *>(this);
- aEvt.EventId = nAccesibleEventId;
+ aEvt.EventId = nAccessibleEventId;
aEvt.OldValue = rOldVal;
aEvt.NewValue = rNewVal ;
diff --git a/starmath/source/accessibility.hxx b/starmath/source/accessibility.hxx
index 9c1095f..dbe9d40 100644
--- a/starmath/source/accessibility.hxx
+++ b/starmath/source/accessibility.hxx
@@ -80,7 +80,7 @@ public:
void ClearWin(); // to be called when view is destroyed
void LaunchEvent(
- const sal_Int16 nAccesibleEventId,
+ const sal_Int16 nAccessibleEventId,
const css::uno::Any &rOldVal,
const css::uno::Any &rNewVal);
diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx
index 88f5f2a..bdabe2c 100644
--- a/svx/source/accessibility/AccessibleShape.cxx
+++ b/svx/source/accessibility/AccessibleShape.cxx
@@ -1405,7 +1405,7 @@ OUString AccessibleShape::getObjectLink( const uno::Any& )
return aRet;
}
-// XAccesibleHypertext
+// XAccessibleHypertext
sal_Int32 SAL_CALL AccessibleShape::getHyperLinkCount()
{
// MT: Introduced with IA2 CWS, but SvxAccessibleHyperlink was redundant to svx::AccessibleHyperlink which we introduced meanwhile.
@@ -1440,7 +1440,7 @@ sal_Int32 SAL_CALL AccessibleShape::getHyperLinkIndex( sal_Int32 )
sal_Int32 nRet = 0;
return nRet;
}
-// XAccesibleText
+// XAccessibleText
sal_Int32 SAL_CALL AccessibleShape::getCaretPosition( ){return 0;}
sal_Bool SAL_CALL AccessibleShape::setCaretPosition( sal_Int32 ){return false;}
sal_Unicode SAL_CALL AccessibleShape::getCharacter( sal_Int32 ){return 0;}
diff --git a/sw/source/core/access/accdoc.cxx b/sw/source/core/access/accdoc.cxx
index c206dca..9e5f0e0 100644
--- a/sw/source/core/access/accdoc.cxx
+++ b/sw/source/core/access/accdoc.cxx
@@ -322,7 +322,7 @@ uno::Reference< XAccessible > SAL_CALL SwAccessibleDocumentBase::getAccessibleAt
return SwAccessibleContext::getAccessibleAtPoint( aPoint );
}
-// SwAccessibeDocument
+// SwAccessibleDocument
void SwAccessibleDocument::GetStates(
::utl::AccessibleStateSetHelper& rStateSet )
diff --git a/sw/source/core/access/accnotextframe.cxx b/sw/source/core/access/accnotextframe.cxx
index faa5736..623df89 100644
--- a/sw/source/core/access/accnotextframe.cxx
+++ b/sw/source/core/access/accnotextframe.cxx
@@ -249,7 +249,7 @@ sal_Int32 SAL_CALL SwAccessibleNoTextFrame::getAccessibleImageWidth( )
return getSize().Width;
}
-// XAccesibleText
+// XAccessibleText
sal_Int32 SAL_CALL SwAccessibleNoTextFrame::getCaretPosition( ){return 0;}
sal_Bool SAL_CALL SwAccessibleNoTextFrame::setCaretPosition( sal_Int32 ){return false;}
sal_Unicode SAL_CALL SwAccessibleNoTextFrame::getCharacter( sal_Int32 ){return 0;}
diff --git a/sw/source/core/access/accpara.cxx b/sw/source/core/access/accpara.cxx
index fa4913f..b44e2bc 100644
--- a/sw/source/core/access/accpara.cxx
+++ b/sw/source/core/access/accpara.cxx
@@ -1261,7 +1261,7 @@ uno::Sequence< sal_Int8 > SAL_CALL SwAccessibleParagraph::getImplementationId()
return css::uno::Sequence<sal_Int8>();
}
-// XAccesibleText
+// XAccessibleText
sal_Int32 SwAccessibleParagraph::getCaretPosition()
{
@@ -2773,7 +2773,7 @@ sal_Bool SwAccessibleParagraph::copyText( sal_Int32 nStartIndex, sal_Int32 nEndI
return true;
}
-// XAccesibleEditableText
+// XAccessibleEditableText
sal_Bool SwAccessibleParagraph::cutText( sal_Int32 nStartIndex, sal_Int32 nEndIndex )
{
diff --git a/sw/source/core/access/accpara.hxx b/sw/source/core/access/accpara.hxx
index 11e05b9..2413a4d 100644
--- a/sw/source/core/access/accpara.hxx
+++ b/sw/source/core/access/accpara.hxx
@@ -353,7 +353,7 @@ public:
virtual sal_Int32 SAL_CALL getHyperLinkIndex( sal_Int32 nCharIndex ) override;
// #i71360#
- // XAccesibleTextMarkup
+ // XAccessibleTextMarkup
virtual sal_Int32 SAL_CALL getTextMarkupCount( sal_Int32 nTextMarkupType ) override;
virtual css::accessibility::TextSegment SAL_CALL
@@ -391,7 +391,7 @@ public:
virtual sal_Int32 SAL_CALL getNumberOfLineWithCaret() override;
// #i63870#
- // XAccesibleTextAttributes
+ // XAccessibleTextAttributes
virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getDefaultAttributes( const css::uno::Sequence< OUString >& aRequestedAttributes ) override;
virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getRunAttributes( sal_Int32 nIndex, const css::uno::Sequence< OUString >& aRequestedAttributes ) override;
};
More information about the Libreoffice-commits
mailing list