From f84202a2dded26b0a5264a596fff7f78ea1502db Mon Sep 17 00:00:00 2001 From: "cmanske%netscape.com" Date: Thu, 22 Jun 2000 03:09:19 +0000 Subject: [PATCH] Simple comment change for clarity relating to table editing. b=20973, r=jfrancis git-svn-id: svn://10.0.0.236/trunk@72871 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/idl/nsIEditorShell.idl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/editor/idl/nsIEditorShell.idl b/mozilla/editor/idl/nsIEditorShell.idl index a8d0178b0ce..2c99f533983 100644 --- a/mozilla/editor/idl/nsIEditorShell.idl +++ b/mozilla/editor/idl/nsIEditorShell.idl @@ -411,7 +411,7 @@ interface nsIEditorShell : nsISupports /** Get cell at a location in the layout's cellmap * returns null when past last cell in a row or column - * Get a cell and associated data from the layout frame based on cell map coordinates (0 index) + * If tableElement is null, it will try to find enclosing table of selection anchor */ nsIDOMElement GetCellAt(in nsIDOMElement tableElement, in PRInt32 rowIndex, in PRInt32 colIndex); @@ -419,6 +419,7 @@ interface nsIEditorShell : nsISupports * returns null when past last cell in a row or column * Note that rowSpan and/or colSpan may be 0 (for extending across entire table), * so actualRowSpan and actualColSpan are the real number of cells spanned + * If tableElement is null, it will try to find enclosing table of selection anchor */ nsIDOMElement GetCellDataAt(in nsIDOMElement tableElement, in PRInt32 rowIndex, in PRInt32 colIndex, out PRInt32 startRowIndex, out PRInt32 startColIndex,