diff options
36 files changed, 44 insertions, 44 deletions
diff --git a/codemaker/source/cppumaker/dependencies.hxx b/codemaker/source/cppumaker/dependencies.hxx index b74ae489d076..718dac392c87 100644 --- a/codemaker/source/cppumaker/dependencies.hxx +++ b/codemaker/source/cppumaker/dependencies.hxx @@ -34,7 +34,7 @@ class TypeManager; namespace codemaker { namespace cppumaker { /** - A simple class to track which other entites a given entity depends on. + A simple class to track which other entities a given entity depends on. <p>This class is not multi-thread–safe.</p> */ diff --git a/connectivity/source/inc/file/FTable.hxx b/connectivity/source/inc/file/FTable.hxx index 3a234674b620..a13437a052fd 100644 --- a/connectivity/source/inc/file/FTable.hxx +++ b/connectivity/source/inc/file/FTable.hxx @@ -44,7 +44,7 @@ namespace connectivity sal_Int32 m_nFilePos; // current IResultSetHelper::Movement sal_uInt8* m_pBuffer; sal_uInt16 m_nBufferSize; // size of the ReadBuffer, if pBuffer != NULL - bool m_bWriteable; // svstream cann't say if we are writeable + bool m_bWriteable; // svstream can't say if we are writeable // so we have to virtual void FileClose(); diff --git a/dbaccess/source/ui/misc/UITools.cxx b/dbaccess/source/ui/misc/UITools.cxx index cc7eb2c97f78..ee94235457fb 100644 --- a/dbaccess/source/ui/misc/UITools.cxx +++ b/dbaccess/source/ui/misc/UITools.cxx @@ -1126,7 +1126,7 @@ TOTypeInfoSP queryPrimaryKeyType(const OTypeInfoMap& _rTypeInfo) if ( !pTypeInfo.get() ) // just a fallback pTypeInfo = queryTypeInfoByType(DataType::VARCHAR,_rTypeInfo); - OSL_ENSURE(pTypeInfo.get(),"checkColumns: cann't find a type which is useable as a key!"); + OSL_ENSURE(pTypeInfo.get(),"checkColumns: can't find a type which is useable as a key!"); return pTypeInfo; } diff --git a/editeng/source/editeng/editdoc.cxx b/editeng/source/editeng/editdoc.cxx index 8c84c685c956..07a495d2bb1f 100644 --- a/editeng/source/editeng/editdoc.cxx +++ b/editeng/source/editeng/editdoc.cxx @@ -2617,7 +2617,7 @@ void EditDoc::FindAttribs( ContentNode* pNode, sal_Int32 nStartPos, sal_Int32 nE while ( pAttr && ( pAttr->GetStart() < nEndPos) ) { const SfxPoolItem* pItem = nullptr; - // Attribut is about... + // Attribute is about... if ( ( pAttr->GetStart() <= nStartPos ) && ( pAttr->GetEnd() >= nEndPos ) ) pItem = pAttr->GetItem(); // Attribute starts right in the middle ... diff --git a/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl b/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl index 6762333ee17b..ae664a4909c3 100644 --- a/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl +++ b/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl @@ -1522,12 +1522,12 @@ <xsl:when test="string-length($typeid_adj) = 0"> <xsl:if test="contains(@adj,',')"> <!--Please Note that the modifier can be more than 2 , so use a translate can be more efficient. - -####Note that comma cann't be recognized by OOo's modifiers + -####Note that comma can't be recognized by OOo's modifiers <xsl:variable name="adjust-x" select="substring-before(@adj,',')"/> <xsl:variable name="adjust-y" select="substring-after(@adj,',')"/> <xsl:variable name="adjuststr"> <xsl:if test="$adjust-x and $adjust-y"> - -####Note that comma cann't be recognized by OOo's modifiers-> + -####Note that comma can't be recognized by OOo's modifiers-> <xsl:value-of select="concat( $adjust-x , ' ' ,$adjust-y )"/> </xsl:if> </xsl:variable>--> @@ -1536,7 +1536,7 @@ </xsl:attribute> </xsl:if> <xsl:if test="@adj and not(contains(@adj,','))"> - <!--####Note that comma cann't be recognized by OOo's modifiers.--> + <!--####Note that comma can't be recognized by OOo's modifiers.--> <xsl:attribute name="draw:modifiers"> <xsl:value-of select="@adj"/> </xsl:attribute> @@ -1742,12 +1742,12 @@ <xsl:if test="not($instance/@adj)"> <xsl:if test="contains(@adj,',')">--> <!--Please Note that the modifier can be more than 2 , so use a translate can be more efficient. - -####Note that comma cann't be recognized by OOo's modifiers + -####Note that comma can't be recognized by OOo's modifiers <xsl:variable name="adjust-x" select="substring-before(@adj,',')"/> <xsl:variable name="adjust-y" select="substring-after(@adj,',')"/> <xsl:variable name="adjuststr"> <xsl:if test="$adjust-x and $adjust-y"> - < -####Note that comma cann't be recognized by OOo's modifiers.-> + < -####Note that comma can't be recognized by OOo's modifiers.-> <xsl:value-of select="concat( $adjust-x , ' ' ,$adjust-y )"/> </xsl:if> </xsl:variable>--> @@ -1756,7 +1756,7 @@ </xsl:attribute> </xsl:if> <xsl:if test="@adj and not(contains(@adj,','))">--> - <!--####Note that comma cann't be recognized by OOo's modifiers.--> + <!--####Note that comma can't be recognized by OOo's modifiers.--> <!--Dummy after version 1.63 <xsl:attribute name="draw:modifiers"> <xsl:value-of select="@adj"/> </xsl:attribute> diff --git a/filter/source/xslt/import/wordml/wordml2ooo_path.xsl b/filter/source/xslt/import/wordml/wordml2ooo_path.xsl index 253599155eb4..65e79be154ef 100644 --- a/filter/source/xslt/import/wordml/wordml2ooo_path.xsl +++ b/filter/source/xslt/import/wordml/wordml2ooo_path.xsl @@ -583,7 +583,7 @@ <!-- **Template vmlpath2enhancedpath** The template is responsible for converting the vml-path to enhanced-path, because the svg:path - cann't support command a now.(But heard that will be supported in OOo3.0) + can't support command a now.(But heard that will be supported in OOo3.0) And the 2nd reason of using an enhanced-path is that enhanced-path have a perfect mapping to vmlpath.(You will find out that often, we even don't need to change the parameters). --> diff --git a/framework/inc/jobs/configaccess.hxx b/framework/inc/jobs/configaccess.hxx index 54fb27285782..a6812f0b5520 100644 --- a/framework/inc/jobs/configaccess.hxx +++ b/framework/inc/jobs/configaccess.hxx @@ -34,7 +34,7 @@ namespace framework{ @short implements a simple configuration access @descr Sometimes it's better to have direct config access instead of using specialized config items of the svtools - project. This class can wrapp such configuration access. + project. This class can wrap such configuration access. */ class FWI_DLLPUBLIC ConfigAccess final { diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx index d3a8707a0f11..28f9d269c483 100644 --- a/framework/inc/jobs/job.hxx +++ b/framework/inc/jobs/job.hxx @@ -42,7 +42,7 @@ namespace framework{ /** @short it represent a job; execute it and control its lifetime - @descr This implementation can be used to wrapp jobs, execute it + @descr This implementation can be used to wrap jobs, execute it synchronously or asynchronous, control its lifetime and differe between jobs with and without configuration. */ diff --git a/framework/source/inc/loadenv/loadenvexception.hxx b/framework/source/inc/loadenv/loadenvexception.hxx index b75009ce652f..8bf0e2f36008 100644 --- a/framework/source/inc/loadenv/loadenvexception.hxx +++ b/framework/source/inc/loadenv/loadenvexception.hxx @@ -30,7 +30,7 @@ namespace framework{ /** @short specify an exception, which can be used inside the load environment only. - @descr Of course outside code must wrapp it, to transport + @descr Of course outside code must wrap it, to transport the occurred information to its caller. */ class LoadEnvException diff --git a/hwpfilter/source/hbox.h b/hwpfilter/source/hbox.h index 8592e7d4cd8d..ce479c4c34dc 100644 --- a/hwpfilter/source/hbox.h +++ b/hwpfilter/source/hbox.h @@ -354,7 +354,7 @@ struct TxtBox: public FBox */ short nCell; //:=1 offset 80 /** - * If value of protect is 1, size of cell cann't change. + * If value of protect is 1, size of cell can't change. */ short protect; //1=size lock diff --git a/include/rtl/uuid.h b/include/rtl/uuid.h index 4e7089bee9e6..61fd8461e959 100644 --- a/include/rtl/uuid.h +++ b/include/rtl/uuid.h @@ -111,7 +111,7 @@ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_compareUuid( @param pTargetUUID pointer to at least 16 bytes of memory. After the call it contains the newly generated uuid in network byte order. @param pNameSpaceUUID The namespace uuid. Below are some predefined ones, - but any arbitray uuid can be used as namespace. + but any arbitrary uuid can be used as namespace. @param pName the name */ diff --git a/include/sfx2/docmacromode.hxx b/include/sfx2/docmacromode.hxx index 80065d4ad016..f043e36a26d3 100644 --- a/include/sfx2/docmacromode.hxx +++ b/include/sfx2/docmacromode.hxx @@ -103,7 +103,7 @@ namespace sfx2 /** checks whether the document's storage contains sub storages with macros or scripts - A default implementation of this method will simply cann DocumentMacroMode::storageHasMacros + A default implementation of this method will simply call DocumentMacroMode::storageHasMacros with the document's root storage. However, there might be document types where this isn't sufficient (e.g. database documents which contain sub documents which can also contain macro/script storages). diff --git a/include/svx/fmdpage.hxx b/include/svx/fmdpage.hxx index 8cc790eb4983..152f862086af 100644 --- a/include/svx/fmdpage.hxx +++ b/include/svx/fmdpage.hxx @@ -32,7 +32,7 @@ class SVX_DLLPUBLIC SvxFmDrawPage :public SvxDrawPage { protected: - // Creating a SdrObject based on a Description. Cann be used by derived classes to + // Creating a SdrObject based on a Description. Can be used by derived classes to // support own css::drawing::Shapes (for example Controls) virtual SdrObject *CreateSdrObject_( const css::uno::Reference< css::drawing::XShape > & xShape ) override; diff --git a/qadevOOo/tests/java/ifc/awt/_XWindow.java b/qadevOOo/tests/java/ifc/awt/_XWindow.java index 10498bde9e62..089118ae7338 100644 --- a/qadevOOo/tests/java/ifc/awt/_XWindow.java +++ b/qadevOOo/tests/java/ifc/awt/_XWindow.java @@ -68,7 +68,7 @@ import util.ValueComparer; * must lost it. </li> * <li> <code>'XWindow.ControlShape'</code> <b>optional</b> * (of type <code>XControlShape</code>): -* Some shapes cann't change their size within fixed ControlShape +* Some shapes can't change their size within fixed ControlShape * and their size could be changed only if size of container * ControlShape is changed. For such shapes this relation should * be passed for proper <code>addWindowListener</code> test. </li> diff --git a/qadevOOo/tests/java/ifc/container/_XContainer.java b/qadevOOo/tests/java/ifc/container/_XContainer.java index d2302e679df7..6d0d372558e5 100644 --- a/qadevOOo/tests/java/ifc/container/_XContainer.java +++ b/qadevOOo/tests/java/ifc/container/_XContainer.java @@ -47,7 +47,7 @@ import com.sun.star.uno.XNamingService; * container.</li> * <li> <code>'INSTANCE2'</code> : <b>(optional)</b> * Object which can be inserted into container. The relation -* must be specified when container cann't contain two +* must be specified when container can't contain two * identical objects. Replaces the first instance.</li> * <li> <code>'XContainer.Container'</code> (of type * <code>com.sun.star.container.XNameContainer</code>) diff --git a/qadevOOo/tests/java/ifc/document/_XFilter.java b/qadevOOo/tests/java/ifc/document/_XFilter.java index 37a8c2b68ea9..8ea1326bc1c7 100644 --- a/qadevOOo/tests/java/ifc/document/_XFilter.java +++ b/qadevOOo/tests/java/ifc/document/_XFilter.java @@ -114,7 +114,7 @@ public class _XFilter extends MultiMethodTest { result = oObj.filter(mDesc) ; if (checker == null) { - log.println("!!! Warning : cann't check filter as no relation found"); + log.println("!!! Warning : can't check filter as no relation found"); } else { result &= checker.checkFilter() ; } diff --git a/qadevOOo/tests/java/ifc/form/_XChangeBroadcaster.java b/qadevOOo/tests/java/ifc/form/_XChangeBroadcaster.java index d8dd8da8bdf8..7583ca6ec1ed 100644 --- a/qadevOOo/tests/java/ifc/form/_XChangeBroadcaster.java +++ b/qadevOOo/tests/java/ifc/form/_XChangeBroadcaster.java @@ -55,7 +55,7 @@ import com.sun.star.uno.UnoRuntime; * * <b>Prerequisites:</b> component must implement <code>XTextComponent</code> * interface for changing component's text which must cause listener call. -* If the component cann't support the interface, then the relation +* If the component can't support the interface, then the relation * <code>'XChangeBroadcaster.Changer'</code> must be passed. <p> * * Test is <b> NOT </b> multithread compliant. <p> diff --git a/qadevOOo/tests/java/ifc/frame/_XFrame.java b/qadevOOo/tests/java/ifc/frame/_XFrame.java index 118134777953..c2e3e815ea0c 100644 --- a/qadevOOo/tests/java/ifc/frame/_XFrame.java +++ b/qadevOOo/tests/java/ifc/frame/_XFrame.java @@ -406,7 +406,7 @@ public class _XFrame extends MultiMethodTest { TestFrameActionListener listener = new TestFrameActionListener(); if (tEnv.getTestCase().getObjectName().equals("Desktop")) { - log.println("Desktop cann't change context"); + log.println("Desktop can't change context"); tRes.tested("contextChanged()", true) ; return; } diff --git a/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory.java b/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory.java index 0cff3d08117b..1475b7380db5 100644 --- a/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory.java +++ b/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory.java @@ -80,7 +80,7 @@ public class _XInvocationAdapterFactory extends MultiMethodTest { } catch (com.sun.star.uno.Exception e) { e.printStackTrace(log) ; - throw new StatusException("Cann't create invocation for object", e) ; + throw new StatusException("Can't create invocation for object", e) ; } XInterface xInStr = null ; diff --git a/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory2.java b/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory2.java index 636c6578f2e4..ba38e2e7254a 100644 --- a/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory2.java +++ b/qadevOOo/tests/java/ifc/script/_XInvocationAdapterFactory2.java @@ -80,7 +80,7 @@ public class _XInvocationAdapterFactory2 extends MultiMethodTest { } catch (com.sun.star.uno.Exception e) { e.printStackTrace(log) ; - throw new StatusException("Cann't create invocation for object", e) ; + throw new StatusException("Can't create invocation for object", e) ; } XInterface xInStr = null ; diff --git a/qadevOOo/tests/java/ifc/ui/dialogs/_XExecutableDialog.java b/qadevOOo/tests/java/ifc/ui/dialogs/_XExecutableDialog.java index 8665f2fb3c95..eddf139c607a 100644 --- a/qadevOOo/tests/java/ifc/ui/dialogs/_XExecutableDialog.java +++ b/qadevOOo/tests/java/ifc/ui/dialogs/_XExecutableDialog.java @@ -32,9 +32,9 @@ import com.sun.star.util.XCancellable; * <li><code> execute()</code></li> * </ul> <p> * - * This interface methods cann't be checked, thereby methods + * These interface methods can't be checked, thereby methods * are just called. <code>execute</code> method is not called - * at all as the dialog shown cann't be disposed. <p> + * at all as the dialog shown can't be disposed. <p> * * Test is <b> NOT </b> multithread compliant. <p> * @see com.sun.star.ui.dialogs.XExecutableDialog diff --git a/qadevOOo/tests/java/ifc/view/_XPrintable.java b/qadevOOo/tests/java/ifc/view/_XPrintable.java index 6a55688be115..bea28547ded4 100644 --- a/qadevOOo/tests/java/ifc/view/_XPrintable.java +++ b/qadevOOo/tests/java/ifc/view/_XPrintable.java @@ -114,7 +114,7 @@ public class _XPrintable extends MultiMethodTest { * exists. <p> * * @throws StatusException if service - * <code>com.sun.star.ucb.SimpleFileAccess</code> cann't be + * <code>com.sun.star.ucb.SimpleFileAccess</code> can't be * created. */ public void _print() throws Exception { diff --git a/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java b/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java index d31bfe1ea029..6e0a758e00d4 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java +++ b/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java @@ -205,7 +205,7 @@ public class ORowSet extends TestCase { * Creating a TestEnvironment for the interfaces to be tested. * The database (DBF) file is copied from test document directory * into SOffice temp dir with unique name for each environment - * creation. If the file cann't be copied (is not released) + * creation. If the file can't be copied (is not released) * then another unique name is used (file name suffix incremented * by 1).<p> * diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java index 63d1ffdf33b8..c68079738bc1 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java @@ -120,7 +120,7 @@ public class SwAccessibleFooterView extends TestCase { Integer.valueOf(1000)); } catch (com.sun.star.uno.Exception e) { e.printStackTrace(); - throw new StatusException("Cann't change footer.", e); + throw new StatusException("Can't change footer.", e); } } }); diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java index 746d47514843..39fd8f954743 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java @@ -110,7 +110,7 @@ public class SwAccessibleHeaderView extends TestCase { Integer.valueOf(1000)); } catch (com.sun.star.uno.Exception e) { e.printStackTrace(); - throw new StatusException("Cann't change footer.", e); + throw new StatusException("Can't change footer.", e); } } }); diff --git a/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java b/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java index fe537e0f1292..fbb412c26104 100644 --- a/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java +++ b/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java @@ -376,7 +376,7 @@ public class _XDataPilotDescriptor { } if (fieldsNames[rem] == null) { - System.out.println("No fields were set to this orientation - cann't check result") ; + System.out.println("No fields were set to this orientation - can't check result") ; return true ; } diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx index 9261da060714..f52c62fbbb2c 100644 --- a/sc/source/core/tool/interpr5.cxx +++ b/sc/source/core/tool/interpr5.cxx @@ -295,7 +295,7 @@ ScMatrixRef ScInterpreter::GetNewMat(SCSIZE nC, SCSIZE nR, bool bEmpty) SCSIZE nCols, nRows; pMat->GetDimensions( nCols, nRows); if ( nCols != nC || nRows != nR ) - { // arbitray limit of elements exceeded + { // arbitrary limit of elements exceeded SetError( FormulaError::MatrixSize); pMat.reset(); } diff --git a/sd/xsl/effect.xsl b/sd/xsl/effect.xsl index 283dde3e83a8..dc934d6d125e 100644 --- a/sd/xsl/effect.xsl +++ b/sd/xsl/effect.xsl @@ -197,7 +197,7 @@ </anim:par> </xsl:template> - <!-- whipe --> + <!-- wipe --> <xsl:template match="anim:par[@pres:preset-id = 'ooo-entrance-wipe']"> <anim:par pres:preset-property="Direction"> <xsl:apply-templates select="*|@*|text()"/> diff --git a/svtools/source/table/gridtablerenderer.cxx b/svtools/source/table/gridtablerenderer.cxx index a3d6e84ddb1b..aadc04e61a88 100644 --- a/svtools/source/table/gridtablerenderer.cxx +++ b/svtools/source/table/gridtablerenderer.cxx @@ -385,7 +385,7 @@ namespace svt { namespace table DrawTextFlags nDrawTextFlags = lcl_getAlignmentTextDrawFlags(*m_pImpl, 0) | DrawTextFlags::Clip; if (!m_pImpl->rModel.isEnabled()) nDrawTextFlags |= DrawTextFlags::Disable; - // TODO: is using the horizontal alignment of the 0'th column a good idea here? This is pretty ... arbitray .. + // TODO: is using the horizontal alignment of the 0'th column a good idea here? This is pretty ... arbitrary .. rRenderContext.DrawText(aTextRect, rowTitle, nDrawTextFlags); } diff --git a/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx b/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx index e6c696601bc7..9a538162779f 100644 --- a/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx +++ b/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx @@ -99,7 +99,7 @@ drawinglayer::primitive2d::Primitive2DContainer ViewContactOfSdrOle2Obj::createP { // #i123539# allow buffering and reuse of local chart data to not need to rebuild it // on every ViewObjectContact::getPrimitive2DSequence call. TTTT: Not needed for - // aw080, there this mechanism alraedy works differently + // aw080, there this mechanism already works differently if(mxChartContent.is() // check if we need to update the transformation primitive wrapping the chart && maGridOffset == GetOle2Obj().GetGridOffset()) diff --git a/sw/source/core/edit/edattr.cxx b/sw/source/core/edit/edattr.cxx index 21aeabaa7123..d17dc1b2c634 100644 --- a/sw/source/core/edit/edattr.cxx +++ b/sw/source/core/edit/edattr.cxx @@ -351,11 +351,11 @@ std::vector<std::pair< const SfxPoolItem*, std::unique_ptr<SwPaM> >> SwEditShell if( pItem->Which() == nWhich ) { sal_Int32 nStart = 0, nStop = 0; - if( nAttrStart < nStt ) //Attribut starts before selection + if( nAttrStart < nStt ) // Attribute starts before selection nStart = nStt; else nStart = nAttrStart; - if( *pAttrEnd > nEnd ) //Attribut ends after selection + if( *pAttrEnd > nEnd ) // Attribute ends after selection nStop = nEnd; else nStop = *pAttrEnd; diff --git a/sw/source/core/txtnode/thints.cxx b/sw/source/core/txtnode/thints.cxx index 19ec94e892cf..5c9f3e1371fc 100644 --- a/sw/source/core/txtnode/thints.cxx +++ b/sw/source/core/txtnode/thints.cxx @@ -1934,7 +1934,7 @@ bool SwTextNode::SetAttr( { if ( nEnd != nStt && !pNew->GetEnd() ) { - OSL_FAIL("Attribut without end, but area marked"); + OSL_FAIL("Attribute without end, but area marked"); DestroyAttr( pNew ); // do not insert } else if ( InsertHint( pNew, nMode ) ) diff --git a/sw/source/filter/html/htmltab.cxx b/sw/source/filter/html/htmltab.cxx index 89d148fa2e74..dba4c5242f6c 100644 --- a/sw/source/filter/html/htmltab.cxx +++ b/sw/source/filter/html/htmltab.cxx @@ -3161,7 +3161,7 @@ void CellSaveStruct::InsertCell( SwHTMLParser& rParser, // Otherwise something's wrong. Let's check that... // MIB 8.1.98: When attributes were opened outside of a cell, - // they're still in the attribut table and will only be deleted at the end + // they're still in the attribute table and will only be deleted at the end // through the CleanContext calls in BuildTable. We don't check that there // so that we get no assert [violations, by translator] // We can see this on nContextStAttrMin: the remembered value of nContextStAttrMinSave diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx index 98f1a58d3c5a..41a22c8bf29b 100644 --- a/sw/source/filter/ww8/ww8atr.cxx +++ b/sw/source/filter/ww8/ww8atr.cxx @@ -4654,10 +4654,10 @@ void WW8AttributeOutput::ParaAdjust( const SvxAdjustItem& rAdjust ) nAdj = nAdjBiDi = 1; break; default: - return; // not a supported Attribut + return; // not a supported Attribute } - if ( 255 != nAdj ) // supported Attribut? + if ( 255 != nAdj ) // supported Attribute? { m_rWW8Export.InsUInt16( NS_sprm::sprmPJc80 ); m_rWW8Export.pO->push_back( nAdj ); diff --git a/sw/source/filter/ww8/ww8struc.hxx b/sw/source/filter/ww8/ww8struc.hxx index 3272d74b682e..b6f89d346316 100644 --- a/sw/source/filter/ww8/ww8struc.hxx +++ b/sw/source/filter/ww8/ww8struc.hxx @@ -1065,7 +1065,7 @@ struct SEPr // Fixed array - two entries for each SEP column to store width of column and spacing to next column. // At odd index values [1,3,5,...] the column widths are stored. // At even index values [2,4,6,...] the spacings to the next columns are stored. - // Value at index 0 is initialized with 0 and used for easier interation on the array + // Value at index 0 is initialized with 0 and used for easier iteration on the array sal_Int32 rgdxaColumnWidthSpacing[MAX_NO_OF_SEP_COLUMNS*2 + 1]; sal_Int32 dxaColumnWidth; diff --git a/sw/source/ui/dbui/mmgreetingspage.cxx b/sw/source/ui/dbui/mmgreetingspage.cxx index 24bd60320a62..4760f5e9e273 100644 --- a/sw/source/ui/dbui/mmgreetingspage.cxx +++ b/sw/source/ui/dbui/mmgreetingspage.cxx @@ -181,7 +181,7 @@ void SwMailMergeGreetingsPage::UpdatePreview() bFemale = xColumn->getString() == sFemaleValue; if( !bNoValue ) { - //no last name value marks the greeting also als neutral + //no last name value marks the greeting also as neutral const OUString sLastNameColumn = m_rConfigItem.GetAssignedColumn(MM_PART_LASTNAME); if ( xColAccess->hasByName(sLastNameColumn) ) |