From caf9e56a81d28bdb8d447bc9d3538bbd9969ff73 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 29 Aug 2017 10:24:16 +0300 Subject: Change assertion failure to SAL_WARN I hit it multiple times and have no interest in figuring out why. Or time. Change-Id: I3f22c8b62fdcf987b760ac16bfe8a21a8870d33e Reviewed-on: https://gerrit.libreoffice.org/42212 Reviewed-by: Tor Lillqvist Tested-by: Tor Lillqvist --- vcl/win/app/salinst.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx index 09532902af00..97a5b6c55ad4 100644 --- a/vcl/win/app/salinst.cxx +++ b/vcl/win/app/salinst.cxx @@ -722,7 +722,7 @@ LRESULT CALLBACK SalComWndProc( HWND, UINT nMsg, WPARAM wParam, LPARAM lParam, i // PM_QS_POSTMESSAGE is needed, so we don't process the SendMessage from DoYield! while ( PeekMessageW(&aMsg, nullptr, SAL_MSG_TIMER_CALLBACK, SAL_MSG_TIMER_CALLBACK, PM_REMOVE | PM_NOYIELD | PM_QS_POSTMESSAGE) ) - assert(! "Multiple timer messages in queue" ); + SAL_WARN("vcl", "Multiple timer messages in queue"); GetSalData()->mbOnIdleRunScheduler = false; EmitTimerCallback(); break; -- cgit