summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-08-18 20:53:27 +0200
committerMichael Stahl <mstahl@redhat.com>2017-08-21 15:52:41 +0200
commit38fa44435a428685b4ac59ee98972a8521942225 (patch)
tree442600a651acb02d79bd531bcc4a47b40f7565e8 /vcl
parente86def1f3f86731230a27926d61d525653f62c72 (diff)
fix bogus always-true asserts
Most of these were converted from OSL_ASSERT Change-Id: Ia95a758cdebf72ee80d00866644d92e6bb915071
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/app/salinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx
index 7ea3bd526675..09532902af00 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" );
+ assert(! "Multiple timer messages in queue" );
GetSalData()->mbOnIdleRunScheduler = false;
EmitTimerCallback();
break;