mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Fix unintialized member of BufferView::Private
Fixes coverity issue 23404.
This commit is contained in:
parent
fac7cb922a
commit
fbe333245e
@ -227,7 +227,8 @@ enum ScreenUpdateStrategy {
|
||||
|
||||
struct BufferView::Private
|
||||
{
|
||||
Private(BufferView & bv): wh_(0), cursor_(bv),
|
||||
Private(BufferView & bv) : update_strategy_(NoScreenUpdate),
|
||||
wh_(0), cursor_(bv),
|
||||
anchor_pit_(0), anchor_ypos_(0),
|
||||
inlineCompletionUniqueChars_(0),
|
||||
last_inset_(0), clickable_inset_(false),
|
||||
|
Loading…
x
Reference in New Issue
Block a user