diff options
-rw-r--r-- | embeddedobj/source/commonembedding/persistence.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/crsr/crstrvl.cxx | 4 | ||||
-rw-r--r-- | wizards/source/scriptforge/SF_Exception.xba | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/embeddedobj/source/commonembedding/persistence.cxx b/embeddedobj/source/commonembedding/persistence.cxx index d1235fdfa1c8..129036988f31 100644 --- a/embeddedobj/source/commonembedding/persistence.cxx +++ b/embeddedobj/source/commonembedding/persistence.cxx @@ -1795,7 +1795,7 @@ void SAL_CALL OCommonEmbeddedObject::breakLink( const uno::Reference< embed::XSt { // tdf#141528 m_xDocHolder->GetComponent() may be not set, so add it // to the try path to not get thrown out of the local context to the next - // highter try...catch on the stack. To make breakLink work it is + // higher try...catch on the stack. To make breakLink work it is // *necessary* to execute the code below that resets the linked state, // esp. the *.clear stuff and resetting m_bIsLink. uno::Reference< util::XModifiable > xModif( m_xDocHolder->GetComponent(), uno::UNO_QUERY_THROW ); diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx index 529ab1efe032..a08e0f4c3fba 100644 --- a/sw/source/core/crsr/crstrvl.cxx +++ b/sw/source/core/crsr/crstrvl.cxx @@ -2211,7 +2211,7 @@ const SwRangeRedline* SwCursorShell::SelNextRedline() NormalizePam(false); pFnd = GetDoc()->getIDocumentRedlineAccess().SelNextRedline( *m_pCurrentCursor ); - // at the end of the document, go the the start of the document, and try again + // at the end of the document, go to the start of the document, and try again if ( !pFnd ) { GetDoc()->GetDocShell()->GetWrtShell()->StartOfSection(); @@ -2239,7 +2239,7 @@ const SwRangeRedline* SwCursorShell::SelPrevRedline() NormalizePam(true); pFnd = GetDoc()->getIDocumentRedlineAccess().SelPrevRedline( *m_pCurrentCursor ); - // at the start of the document, go the the end of the document, and try again + // at the start of the document, go to the end of the document, and try again if ( !pFnd ) { GetDoc()->GetDocShell()->GetWrtShell()->EndOfSection(); diff --git a/wizards/source/scriptforge/SF_Exception.xba b/wizards/source/scriptforge/SF_Exception.xba index ba9ce109ecc8..d2ee476c6430 100644 --- a/wizards/source/scriptforge/SF_Exception.xba +++ b/wizards/source/scriptforge/SF_Exception.xba @@ -307,7 +307,7 @@ Public Sub ConsoleClear(Optional ByVal Keep) ''' Clear the console keeping an optional number of recent messages ''' Args: ''' Keep: the number of messages to keep -''' If Keep is bigger than the the number of messages stored in the console, +''' If Keep is bigger than the number of messages stored in the console, ''' the console is not cleared ''' Example: ''' SF_Exception.ConsoleClear(5) @@ -1173,4 +1173,4 @@ Private Function _Repr() As String End Function ' ScriptForge.SF_Exception._Repr REM ============================================ END OF SCRIPTFORGE.SF_EXCEPTION -</script:module>
\ No newline at end of file +</script:module> |