summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-05-07 16:31:38 -0400
committerAndras Timar <andras.timar@collabora.com>2016-06-19 17:22:14 +0200
commita1b8274ca5f674e9c5a17c72eb81e2f64d88e763 (patch)
tree889756c797ec29faa03ce061a8d674dce7e85986 /desktop
parenta61ca650e21de3bd896bc6f9abce1481425fb29a (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> (cherry picked from commit a6dfeca2bcfae4e935009699678f956132a9bd4f)
Diffstat (limited to 'desktop')
-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 e2b169ed0851..ec0b501706f3 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);
}
}