Fix typos

Change-Id: I4be77bf074f93fc978e34e5ba4c4693896e4c467
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115645
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
This commit is contained in:
Andrea Gelmini 2021-05-15 11:38:37 +02:00
parent c781776f3c
commit 817b438ef5
6 changed files with 8 additions and 8 deletions

View file

@ -1346,7 +1346,7 @@ namespace emfio
// tdf#142014 By default the stroke is made with hairline. If width is bigger, we need to use PolyLineAction
if ( bStroke )
{
// bFill is drawing hairstyle line. So we need to to draw it only when the width is different than 0
// bFill is drawing hairstyle line. So we need to draw it only when the width is different than 0
if ( !bFill || maLineStyle.aLineInfo.GetWidth() || ( maLineStyle.aLineInfo.GetStyle() == LineStyle::Dash ) )
{
sal_uInt16 i, nCount = maPathObj.Count();

View file

@ -227,7 +227,7 @@
<property name="group">originalsize</property>
<child internal-child="accessible">
<object class="AtkObject" id="fittoprintable-atkobject">
<property name="AtkObject::accessible-description" translatable="yes" context="drawprinteroptions|extended_tip|fitoprinttable">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</property>
<property name="AtkObject::accessible-description" translatable="yes" context="drawprinteroptions|extended_tip|fittoprinttable">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</property>
</object>
</child>
</object>
@ -249,7 +249,7 @@
<property name="group">originalsize</property>
<child internal-child="accessible">
<object class="AtkObject" id="distributeonmultiple-atkobject">
<property name="AtkObject::accessible-description" translatable="yes" context="drawprinteroptions|extended_tip|disrtibuteonmultiple">Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets.</property>
<property name="AtkObject::accessible-description" translatable="yes" context="drawprinteroptions|extended_tip|distributeonmultiple">Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets.</property>
</object>
</child>
</object>

View file

@ -53,7 +53,7 @@ private:
ESelection m_aAllSelection;
/**
* Finds the ESelection wich contains all the text.
* Finds the ESelection which contains all the text.
*/
void updateAllESelection();
};

View file

@ -1808,7 +1808,7 @@ bool SwCursor::LeftRight( bool bLeft, sal_uInt16 nCnt, sal_uInt16 nMode,
// the document. When the cursor is at the end of the visible document and
// right arrow key is pressed Move fails after moving the cursor to the
// end of the document model, which doesn't have a node frame and causes
// wierd numbers to be displayed in the statusbar page number count. Left
// weird numbers to be displayed in the statusbar page number count. Left
// arrow, when in this state, causes a crash without RestoredSavePos() added here.
RestoreSavePos();
break;

View file

@ -202,7 +202,7 @@ void SwBaseShell::ExecDelete(SfxRequest &rReq)
if (rSh.IsEndPara())
{
SwNodeIndex aIdx(rSh.GetCursor()->GetNode());
// disallow if this is am outline node having folded content
// disallow if this is an outline node having folded content
bool bVisible = true;
aIdx.GetNode().GetTextNode()->GetAttrOutlineContentVisible(bVisible);
if (!bVisible)

View file

@ -130,7 +130,7 @@ static bool lcl_IsAllowed(const SwWrtShell* rSh)
SwTextNode* pTextNode = rSh->GetCursor()->GetNode().GetTextNode();
if (pTextNode && pTextNode->IsOutline())
{
// disallow if this is am outline node having folded content
// disallow if this is an outline node having folded content
bool bVisible = true;
pTextNode->GetAttrOutlineContentVisible(bVisible);
if (!bVisible)
@ -2224,7 +2224,7 @@ void SwWrtShell::MakeAllFoldedOutlineContentVisible(bool bMakeVisible)
// HideControls function.
GetView().GetEditWin().GetFrameControlsManager().HideControls(FrameControlType::Outline);
// temporarily set outline content visibile attribute true for folded outline nodes
// temporarily set outline content visible attribute true for folded outline nodes
std::vector<SwNode*> aFoldedOutlineNodeArray;
for (SwNode* pNd: GetNodes().GetOutLineNds())
{