mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1060993 - Fix more bad implicit constructors in spellchecker; r=smaug
This commit is contained in:
parent
244e9a84ea
commit
e861861ca4
@ -14,7 +14,7 @@ namespace mozilla {
|
||||
class RemoteSpellcheckEngineChild : public mozilla::PRemoteSpellcheckEngineChild
|
||||
{
|
||||
public:
|
||||
RemoteSpellcheckEngineChild(mozSpellChecker *aOwner);
|
||||
explicit RemoteSpellcheckEngineChild(mozSpellChecker *aOwner);
|
||||
~RemoteSpellcheckEngineChild();
|
||||
|
||||
private:
|
||||
|
@ -60,7 +60,7 @@ private:
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSISIMPLEENUMERATOR
|
||||
|
||||
AppendingEnumerator(nsISimpleEnumerator* aBase);
|
||||
explicit AppendingEnumerator(nsISimpleEnumerator* aBase);
|
||||
|
||||
private:
|
||||
~AppendingEnumerator() {}
|
||||
|
@ -35,7 +35,7 @@ class mozInlineSpellResume;
|
||||
class mozInlineSpellStatus
|
||||
{
|
||||
public:
|
||||
mozInlineSpellStatus(mozInlineSpellChecker* aSpellChecker);
|
||||
explicit mozInlineSpellStatus(mozInlineSpellChecker* aSpellChecker);
|
||||
|
||||
nsresult InitForEditorChange(EditAction aAction,
|
||||
nsIDOMNode* aAnchorNode, int32_t aAnchorOffset,
|
||||
|
@ -49,7 +49,7 @@ NS_IMPL_CYCLE_COLLECTION(mozPersonalDictionary, mEncoder)
|
||||
class mozPersonalDictionaryLoader MOZ_FINAL : public nsRunnable
|
||||
{
|
||||
public:
|
||||
mozPersonalDictionaryLoader(mozPersonalDictionary *dict) : mDict(dict)
|
||||
explicit mozPersonalDictionaryLoader(mozPersonalDictionary *dict) : mDict(dict)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user