Fix uninitialized variable.

This commit is contained in:
Jeff Young 2023-03-12 12:56:12 +00:00
parent c24214fcd2
commit 99247adf15
1 changed files with 2 additions and 1 deletions

View File

@ -928,7 +928,8 @@ struct VIEW::DRAW_ITEM_VISITOR
layer( aLayer ),
useDrawPriority( aUseDrawPriority ),
reverseDrawOrder( aReverseDrawOrder ),
drawForcedTransparent( false )
drawForcedTransparent( false ),
foundForcedTransparent( false )
{
}