Adding nsJSEditorLog::NormalizeTable() stub to fix breakage. a=melton

This commit is contained in:
mcafee%netscape.com 1999-08-04 02:51:05 +00:00
parent a2cd4da365
commit 10137c49e3
2 changed files with 7 additions and 0 deletions

View File

@ -778,6 +778,12 @@ nsJSEditorLog::JoinTableCells()
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsJSEditorLog::NormalizeTable(nsIDOMElement *aTable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsJSEditorLog::GetCellIndexes(nsIDOMElement *aCell, PRInt32 &aColIndex, PRInt32 &aRowIndex)
{

View File

@ -142,6 +142,7 @@ public:
NS_IMETHOD DeleteTableColumn(PRInt32 aNumber);
NS_IMETHOD DeleteTableRow(PRInt32 aNumber);
NS_IMETHOD JoinTableCells();
NS_IMETHOD NormalizeTable(nsIDOMElement *aTable);
NS_IMETHOD BeginComposition(void);
NS_IMETHOD SetCompositionString(const nsString& aCompositionString, nsIDOMTextRangeList* aTextRangeList);
NS_IMETHOD EndComposition(void);