Skip to content

Commit

Permalink
Bug 1439435 - Initialize mIsListeningToEditActions. r=masayuki
Browse files Browse the repository at this point in the history
This is follow up for bug 1430785.  We should initialize
mIsListeningToEditActions on constructor.

MozReview-Commit-ID: 63Igswp3GX1
  • Loading branch information
makotokato committed Feb 20, 2018
1 parent cd6c4f5 commit 2c6dee3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/spellcheck/src/mozInlineSpellChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,8 @@ mozInlineSpellChecker::mozInlineSpellChecker() :
mNumPendingUpdateCurrentDictionary(0),
mDisabledAsyncToken(0),
mNeedsCheckAfterNavigation(false),
mFullSpellCheckScheduled(false)
mFullSpellCheckScheduled(false),
mIsListeningToEditActions(false)
{
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
if (prefs)
Expand Down

0 comments on commit 2c6dee3

Please sign in to comment.