Rename nsISpellCheck to nsIEditorSpellCheck

This commit is contained in:
sfraser%netscape.com 1999-06-11 22:43:19 +00:00
Родитель 85e08daa06
Коммит 3c88513d64
10 изменённых файлов: 13 добавлений и 13 удалений

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

@ -178,8 +178,8 @@ nsEditorShell::QueryInterface(REFNSIID aIID,void** aInstancePtr)
AddRef();
return NS_OK;
}
else if ( aIID.Equals(nsISpellCheck::GetIID()) ) {
*aInstancePtr = (void*) ((nsISpellCheck*)this);
else if ( aIID.Equals(nsIEditorSpellCheck::GetIID()) ) {
*aInstancePtr = (void*) ((nsIEditorSpellCheck*)this);
AddRef();
return NS_OK;
}

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

@ -32,7 +32,7 @@
#include "nsIDOMDocument.h"
#include "nsVoidArray.h"
#include "nsTextServicesCID.h"
#include "nsISpellCheck.h"
#include "nsIEditorSpellCheck.h"
#include "nsISpellChecker.h"
class nsIBrowserWindow;
@ -61,7 +61,7 @@ class nsIOutputStream;
////////////////////////////////////////////////////////////////////////////////
class nsEditorShell : public nsIEditorShell,
public nsISpellCheck,
public nsIEditorSpellCheck,
public nsIDocumentLoaderObserver
{
public:

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

@ -178,8 +178,8 @@ nsEditorShell::QueryInterface(REFNSIID aIID,void** aInstancePtr)
AddRef();
return NS_OK;
}
else if ( aIID.Equals(nsISpellCheck::GetIID()) ) {
*aInstancePtr = (void*) ((nsISpellCheck*)this);
else if ( aIID.Equals(nsIEditorSpellCheck::GetIID()) ) {
*aInstancePtr = (void*) ((nsIEditorSpellCheck*)this);
AddRef();
return NS_OK;
}

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

@ -32,7 +32,7 @@
#include "nsIDOMDocument.h"
#include "nsVoidArray.h"
#include "nsTextServicesCID.h"
#include "nsISpellCheck.h"
#include "nsIEditorSpellCheck.h"
#include "nsISpellChecker.h"
class nsIBrowserWindow;
@ -61,7 +61,7 @@ class nsIOutputStream;
////////////////////////////////////////////////////////////////////////////////
class nsEditorShell : public nsIEditorShell,
public nsISpellCheck,
public nsIEditorSpellCheck,
public nsIDocumentLoaderObserver
{
public:

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

@ -17,4 +17,4 @@
#
nsIEditorShell.idl
nsISpellCheck.idl
nsIEditorSpellCheck.idl

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

@ -23,7 +23,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
XPIDLSRCS = nsIEditorShell.idl \
nsISpellCheck.idl \
nsIEditorSpellCheck.idl \
$(NULL)
MODULE = editor

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

@ -26,7 +26,7 @@ MODULE=editor
XPIDL_MODULE=editor
XPIDLSRCS = .\nsIEditorShell.idl \
.\nsISpellCheck.idl \
.\nsIEditorSpellCheck.idl \
$(NULL)
include <$(DEPTH)\config\rules.mak>

Двоичные данные
editor/macbuild/EditorIDL.mcp

Двоичный файл не отображается.

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

@ -358,7 +358,7 @@ function EditorPrintPreview()
function CheckSpelling()
{
var spellChecker = window.editorShell.QueryInterface(Components.interfaces.nsISpellCheck);
var spellChecker = window.editorShell.QueryInterface(Components.interfaces.nsIEditorSpellCheck);
if (spellChecker)
{
dump("Check Spelling starting...\n");

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

@ -8,7 +8,7 @@ function Startup()
// get the editor shell from the parent window
editorShell = window.opener.editorShell;
editorShell = editorShell.QueryInterface(Components.interfaces.nsISpellCheck);
editorShell = editorShell.QueryInterface(Components.interfaces.nsIEditorSpellCheck);
if(!editorShell) {
dump("EditoreditorShell not found!!!\n");
window.close();