From 81566a48e3e96d7b2f7bf83fe4b423a576de9501 Mon Sep 17 00:00:00 2001 From: "kin%netscape.com" Date: Tue, 11 May 1999 19:14:43 +0000 Subject: [PATCH] Made Add/RemoveWordToPersonalDictionary pure virtual. --- editor/libeditor/txtsvc/nsISpellChecker.h | 4 ++-- editor/txtsvc/public/nsISpellChecker.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/editor/libeditor/txtsvc/nsISpellChecker.h b/editor/libeditor/txtsvc/nsISpellChecker.h index 20a6824a0fd..8f0410ddbb9 100644 --- a/editor/libeditor/txtsvc/nsISpellChecker.h +++ b/editor/libeditor/txtsvc/nsISpellChecker.h @@ -86,13 +86,13 @@ public: * Add a word to the user's personal dictionary. * @param aWord is the word to add. */ - NS_IMETHOD AddWordToPersonalDictionary(nsString *aWord); + NS_IMETHOD AddWordToPersonalDictionary(nsString *aWord) = 0; /** * Remove a word from the user's personal dictionary. * @param aWord is the word to remove. */ - NS_IMETHOD RemoveWordFromPersonalDictionary(nsString *aWord); + NS_IMETHOD RemoveWordFromPersonalDictionary(nsString *aWord) = 0; /** * Returns the list of words in the user's personal dictionary. diff --git a/editor/txtsvc/public/nsISpellChecker.h b/editor/txtsvc/public/nsISpellChecker.h index 20a6824a0fd..8f0410ddbb9 100644 --- a/editor/txtsvc/public/nsISpellChecker.h +++ b/editor/txtsvc/public/nsISpellChecker.h @@ -86,13 +86,13 @@ public: * Add a word to the user's personal dictionary. * @param aWord is the word to add. */ - NS_IMETHOD AddWordToPersonalDictionary(nsString *aWord); + NS_IMETHOD AddWordToPersonalDictionary(nsString *aWord) = 0; /** * Remove a word from the user's personal dictionary. * @param aWord is the word to remove. */ - NS_IMETHOD RemoveWordFromPersonalDictionary(nsString *aWord); + NS_IMETHOD RemoveWordFromPersonalDictionary(nsString *aWord) = 0; /** * Returns the list of words in the user's personal dictionary.