Addded some helper functions to determine whether a content object is

a table cell
This commit is contained in:
troy 1998-06-17 15:21:02 +00:00
parent 49c9b93418
commit 16ea80e42f
2 changed files with 4 additions and 0 deletions

View File

@ -130,6 +130,9 @@ public:
/** @see nsIContent::InsertChildAt */
NS_IMETHOD RemoveChildAt(PRInt32 aIndex, PRBool aNotify);
protected:
PRBool IsTableCell(nsIContent * aContent) const;
};
#endif

View File

@ -112,6 +112,7 @@ public:
protected:
virtual PRBool IsRow(nsIContent * aContent) const;
PRBool IsTableCell(nsIContent * aContent) const;
};