[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - desktop/inc

Ashod Nakashian ashod.nakashian at collabora.co.uk
Sat May 7 20:43:26 UTC 2016


 desktop/inc/lib/init.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a6dfeca2bcfae4e935009699678f956132a9bd4f
Author: Ashod Nakashian <ashod.nakashian at collabora.co.uk>
Date:   Sat May 7 16:31:38 2016 -0400

    LOK: SAL_WARN for each removed event is unnecessary
    
    Change-Id: If5e4c7b8751ae4eeb278475fb00118e32c6bb565
    Reviewed-on: https://gerrit.libreoffice.org/24730
    Reviewed-by: Ashod Nakashian <ashnakash at gmail.com>
    Tested-by: Ashod Nakashian <ashnakash at gmail.com>

diff --git a/desktop/inc/lib/init.hxx b/desktop/inc/lib/init.hxx
index 3087c1b..e581493 100644
--- a/desktop/inc/lib/init.hxx
+++ b/desktop/inc/lib/init.hxx
@@ -178,7 +178,7 @@ namespace desktop {
             {
                 if (m_queue[i].first == type)
                 {
-                    SAL_WARN("idle", "Found [" + std::to_string(type) + "] at " + std::to_string(i));
+                    //SAL_WARN("idle", "Found [" + std::to_string(type) + "] at " + std::to_string(i));
                     break;
                 }
             }
@@ -187,7 +187,7 @@ namespace desktop {
             {
                 if (m_queue[i].first == type)
                 {
-                    SAL_WARN("idle", "Removing [" + std::to_string(type) + "] at " + std::to_string(i));
+                    //SAL_WARN("idle", "Removing [" + std::to_string(type) + "] at " + std::to_string(i));
                     m_queue.erase(m_queue.begin() + i);
                 }
             }


More information about the Libreoffice-commits mailing list