Made Add/RemoveWordToPersonalDictionary pure virtual.

This commit is contained in:
kin%netscape.com 1999-05-11 19:14:43 +00:00
Родитель bd32e484d0
Коммит 81566a48e3
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -86,13 +86,13 @@ public:
* Add a word to the user's personal dictionary. * Add a word to the user's personal dictionary.
* @param aWord is the word to add. * @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. * Remove a word from the user's personal dictionary.
* @param aWord is the word to remove. * @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. * Returns the list of words in the user's personal dictionary.

Просмотреть файл

@ -86,13 +86,13 @@ public:
* Add a word to the user's personal dictionary. * Add a word to the user's personal dictionary.
* @param aWord is the word to add. * @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. * Remove a word from the user's personal dictionary.
* @param aWord is the word to remove. * @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. * Returns the list of words in the user's personal dictionary.