include/drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx |    2 +-
 sal/osl/w32/socket.cxx                                                |    6 
+++---
 svx/source/sdr/contact/viewcontactofsdredgeobj.cxx                    |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit cbc8cbeb17753296b7dc45bd146bc80a7275866a
Author:     Andrea Gelmini <[email protected]>
AuthorDate: Tue Dec 19 16:02:36 2023 +0100
Commit:     Julien Nabet <[email protected]>
CommitDate: Tue Dec 19 20:37:57 2023 +0100

    Fix typo
    
    Change-Id: Ie9848c31ee4969d61470dfb5b570e45848f0914d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160992
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <[email protected]>

diff --git 
a/include/drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx 
b/include/drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx
index 68d40e006a6f..55ba886671e0 100644
--- a/include/drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx
+++ b/include/drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx
@@ -51,7 +51,7 @@ namespace drawinglayer::primitive2d
     Implement a view-dependent get2DDecomposition doing the following steps:
     (a) Locally extract needed parameters from ViewInformation2D to new, local 
parameters
         (this may be a complete local copy of ViewInformation2D)
-    (b) If a buffered decomposition exists, ckeck if one of the new local 
parameters
+    (b) If a buffered decomposition exists, check if one of the new local 
parameters
         differs from the corresponding locally remembered (as member) ones. If 
yes,
         clear maBuffered2DDecomposition
     (d) call baseclass::get2DDecomposition which will use create2DDecomposition
diff --git a/sal/osl/w32/socket.cxx b/sal/osl/w32/socket.cxx
index 2548be0d550c..07e4eb011202 100644
--- a/sal/osl/w32/socket.cxx
+++ b/sal/osl/w32/socket.cxx
@@ -1229,7 +1229,7 @@ sal_Bool SAL_CALL osl_isReceiveReady (
     return (select(pSocket->m_Socket + 1,       /* no of sockets to monitor */
                    &fds,                        /* check read operations */
                    nullptr,                     /* check write ops */
-                   nullptr,                     /* ckeck for OOB */
+                   nullptr,                     /* check for OOB */
                    pTimeout ? &tv : nullptr)==1); /* use timeout? */
 }
 
@@ -1258,7 +1258,7 @@ sal_Bool SAL_CALL osl_isSendReady (
     return (select(pSocket->m_Socket + 1,       /* no of sockets to monitor */
                    nullptr,                     /* check read operations */
                    &fds,                        /* check write ops */
-                   nullptr,                     /* ckeck for OOB */
+                   nullptr,                     /* check for OOB */
                    pTimeout ? &tv : nullptr)==1); /* use timeout? */
 }
 
@@ -1284,7 +1284,7 @@ sal_Bool SAL_CALL osl_isExceptionPending (
     return (select(pSocket->m_Socket + 1,       /* no of sockets to monitor */
                    nullptr,                     /* check read operations */
                    nullptr,                     /* check write ops */
-                   &fds,                        /* ckeck for OOB */
+                   &fds,                        /* check for OOB */
                    pTimeout ? &tv : nullptr)==1); /* use timeout? */
 }
 
diff --git a/svx/source/sdr/contact/viewcontactofsdredgeobj.cxx 
b/svx/source/sdr/contact/viewcontactofsdredgeobj.cxx
index a0e26c5bf2d7..8b02ced5bffb 100644
--- a/svx/source/sdr/contact/viewcontactofsdredgeobj.cxx
+++ b/svx/source/sdr/contact/viewcontactofsdredgeobj.cxx
@@ -43,7 +43,7 @@ namespace sdr::contact
             // what to do when no EdgeTrack is provided (HitTest and 
selectability) ?
             OSL_ENSURE(0 != aEdgeTrack.count(), "Connectors with no geometry 
are not allowed (!)");
 
-            // ckeck attributes
+            // check attributes
             const SfxItemSet& rItemSet = GetEdgeObj().GetMergedItemSet();
             const drawinglayer::attribute::SdrLineEffectsTextAttribute 
aAttribute(
                 
drawinglayer::primitive2d::createNewSdrLineEffectsTextAttribute(

Reply via email to