mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
c4f863915d
mozilla/editor/base/nsEditorShell.cpp mozilla/editor/idl/nsIEditorSpellCheck.idl - Modified StartSpellChecking() so that it no longer calls NextMisspelledWord(). - Renamed Start/CloseSpellChecking() to Init/UninitSpellChecker(). - Changed prototype of GetCurrentDictionary() in the idl file. - Replaced all references of NS_SPELLCHECKER_CID with NS_SPELLCHECKER_PROGID. mozilla/editor/txtsvc/public/nsISpellChecker.h - Added NS_SPELLCHECKER_PROGID. mozilla/editor/txtsvc/public/nsTextServicesCID.h - Removed NS_SPELLCHECKER_CID. mozilla/editor/ui/composer/content/ComposerCommands.js - Replaced all calls to Start/CloseSpellChecking() with Init/UninitSpellChecker(). - We now call GetNextMisspelledWord() after initing the spellchecker. mozilla/editor/ui/dialogs/content/EdSpellCheck.js - Dialog now assumes the spellchecker language has been set before the dialog is invoked. - Fixed Recheck() so that it now sets the language.
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef nsTextServicesCID_h__
|
|
#define nsTextServicesCID_h__
|
|
|
|
#define NS_TEXTSERVICESDOCUMENTINTERNAL_CID \
|
|
{ /* 019718E2-CDB5-11d2-8D3C-000000000000 */ \
|
|
0x019718e2, 0xcdb5, 0x11d2, \
|
|
{ 0x8d, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } }
|
|
|
|
#define NS_TEXTSERVICESDOCUMENT_CID \
|
|
{ /* 019718E3-CDB5-11d2-8D3C-000000000000 */ \
|
|
0x019718e3, 0xcdb5, 0x11d2, \
|
|
{ 0x8d, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } }
|
|
|
|
#endif /* nsTextServicesCID_h__ */
|