summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cui/qa/unit/data/cui-dialogs-test.txt6
-rw-r--r--editeng/source/accessibility/AccessibleEditableTextPara.cxx2
-rw-r--r--include/comphelper/accessiblewrapper.hxx2
-rw-r--r--include/svx/AccessibleShape.hxx2
-rw-r--r--sc/source/core/data/drwlayer.cxx2
-rw-r--r--starmath/source/accessibility.cxx4
-rw-r--r--starmath/source/accessibility.hxx2
-rw-r--r--svx/source/accessibility/AccessibleShape.cxx4
-rw-r--r--sw/source/core/access/accdoc.cxx2
-rw-r--r--sw/source/core/access/accnotextframe.cxx2
-rw-r--r--sw/source/core/access/accpara.cxx4
-rw-r--r--sw/source/core/access/accpara.hxx4
12 files changed, 18 insertions, 18 deletions
diff --git a/cui/qa/unit/data/cui-dialogs-test.txt b/cui/qa/unit/data/cui-dialogs-test.txt
index c8cc78dcb2e2..64d4f2913bd3 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 b741fdceed87..50bb53ba5d43 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 d7b0a006bad0..b37e5a0f8ffb 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 310751da3801..0c40da37bd6e 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 3689aab7e9df..4d3b093943b9 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 59875fc52a61..6e23b4a8f6a9 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 9c1095fd4df6..dbe9d40e9d7b 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 88f5f2a88bd8..bdabe2cb26cf 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 c206dcae072b..9e5f0e0eaac3 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 faa5736ad860..623df89c74be 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 fa4913fe92cf..b44e2bc61558 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 11e05b9486fb..2413a4de6ce3 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;
};