Made Add/RemoveWordToPersonalDictionary pure virtual.

This commit is contained in:
kin%netscape.com 1999-05-11 19:14:43 +00:00
parent 92ef71eee9
commit f56ad4a10c
2 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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.