Kaydet (Commit) 9e0e0db3 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1296208 Operands don't affect result

Change-Id: I9ba731626bb43daae277c20829306c7d2eccd41f
üst f0321253
......@@ -141,8 +141,8 @@ void Window::dispose()
{
assert( mpWindowImpl );
assert( !mpWindowImpl->mbInDispose ); // should only be called from disposeOnce()
assert( !mpWindowImpl->mpParent ||
!mpWindowImpl->mpParent->IsDisposed() ||
assert( (!mpWindowImpl->mpParent ||
!mpWindowImpl->mpParent->IsDisposed()) &&
"vcl::Window child should have its parent disposed first" );
// remove Key and Mouse events issued by Application::PostKey/MouseEvent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment