summaryrefslogtreecommitdiff
path: root/desktop/inc
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-05-07 16:31:38 -0400
committerJan Holesovsky <kendy@collabora.com>2016-05-09 13:58:30 +0200
commite394a8eab65c65e5ce377950ccaad8964ca6bdc3 (patch)
treeb8068ffb69fa786f6dcba35a1864be53e551a33d /desktop/inc
parent755827016d0fffaffd155806c378b5d972ac9016 (diff)
LOK: SAL_WARN for each removed event is unnecessary
Change-Id: If5e4c7b8751ae4eeb278475fb00118e32c6bb565 Reviewed-on: https://gerrit.libreoffice.org/24730 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'desktop/inc')
-rw-r--r--desktop/inc/lib/init.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/inc/lib/init.hxx b/desktop/inc/lib/init.hxx
index 3f962ba7f19c..933b9e669a2d 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);
}
}