[Libreoffice-commits] core.git: desktop/source libreofficekit/source

Julien Nabet serval2412 at yahoo.fr
Mon Oct 24 06:11:30 UTC 2016


 desktop/source/lib/init.cxx              |    2 +-
 libreofficekit/source/gtk/lokdocview.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5c1bb338ef0d781648d5b33ffc9d64c2be6d9926
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Oct 23 21:32:49 2016 +0200

    cppcheck:stlIfStrFind
    
    Change-Id: Ic3c1b37b0c2cf9995e0bd1017cdbaed427fb296c
    Reviewed-on: https://gerrit.libreoffice.org/30185
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index f3592c8..8ce8443 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -356,7 +356,7 @@ struct RectangleAndPart
     static RectangleAndPart Create(const std::string& rPayload)
     {
         RectangleAndPart aRet;
-        if (rPayload.find("EMPTY") == 0) // payload starts with "EMPTY"
+        if (rPayload.compare("EMPTY") == 0) // payload starts with "EMPTY"
         {
             if (comphelper::LibreOfficeKit::isPartInInvalidation())
                 aRet.m_nPart = std::stol(rPayload.substr(6));
diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx
index a08d93e..fd67264 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -1136,7 +1136,7 @@ callback (gpointer pData)
     {
     case LOK_CALLBACK_INVALIDATE_TILES:
     {
-        if (pCallback->m_aPayload.find("EMPTY") != 0) // payload doesn't start with "EMPTY"
+        if (pCallback->m_aPayload.compare("EMPTY") != 0) // payload doesn't start with "EMPTY"
         {
             GdkRectangle aRectangle = payloadToRectangle(pDocView, pCallback->m_aPayload.c_str());
             setTilesInvalid(pDocView, aRectangle);


More information about the Libreoffice-commits mailing list