Landing editor API changes. Removed nsITextEditor and nsTextEditor, split interfaces into more, non-overlapping interfaces, and other general cleanup.

git-svn-id: svn://10.0.0.236/trunk@42725 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sfraser%netscape.com
1999-08-09 01:37:50 +00:00
parent 71e4b293c3
commit 4dd92661ce
55 changed files with 14219 additions and 9761 deletions

View File

@@ -22,14 +22,14 @@
#ifdef NS_DEBUG
#include "nsCOMPtr.h"
#include "nsITextEditor.h"
#include "nsIEditor.h"
#include "nsIHTMLEditor.h"
class TextEditorTest
{
public:
void Run(nsITextEditor *aEditor, PRInt32 *outNumTests, PRInt32 *outNumTestsFailed);
void Run(nsIEditor *aEditor, PRInt32 *outNumTests, PRInt32 *outNumTestsFailed);
TextEditorTest();
~TextEditorTest();
@@ -44,7 +44,7 @@ protected:
nsresult TestTextProperties();
nsCOMPtr<nsITextEditor> mTextEditor;
nsCOMPtr<nsIHTMLEditor> mTextEditor;
nsCOMPtr<nsIEditor> mEditor;
};