Skip to content

Commit

Permalink
HaikuDepot: TextChangingEvent: Init fIsCanceled
Browse files Browse the repository at this point in the history
CID 1162815 and 1162816.
  • Loading branch information
stpere committed Jul 3, 2015
1 parent 73df8e2 commit e8f7b0e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/apps/haikudepot/textview/TextListener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,16 @@ TextChangeEvent::~TextChangeEvent()
TextChangingEvent::TextChangingEvent(int32 firstChangedParagraph,
int32 changedParagraphCount)
:
TextChangeEvent(firstChangedParagraph, changedParagraphCount)
TextChangeEvent(firstChangedParagraph, changedParagraphCount),
fIsCanceled(false)
{
}


TextChangingEvent::TextChangingEvent()
:
TextChangeEvent()
TextChangeEvent(),
fIsCanceled(false)
{
}

Expand Down

0 comments on commit e8f7b0e

Please sign in to comment.