mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 16:22:00 +00:00
Removed InitRowData() member function which is now obsolete
This commit is contained in:
parent
5359861f4a
commit
6b60c930de
@ -38,9 +38,6 @@ struct RowReflowState;
|
||||
class nsTableRowFrame : public nsHTMLContainerFrame
|
||||
{
|
||||
public:
|
||||
/** Initialization of frame as a row */
|
||||
void InitRowData(PRInt32 aRowIndex);
|
||||
|
||||
/** Initialization of data */
|
||||
NS_IMETHOD InitChildren(PRInt32 aRowIndex=-1);
|
||||
|
||||
@ -244,13 +241,6 @@ private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
inline void nsTableRowFrame::InitRowData(PRInt32 aRowIndex)
|
||||
{
|
||||
NS_ASSERTION(0<=aRowIndex, "bad param row index");
|
||||
mRowIndex = aRowIndex;
|
||||
}
|
||||
|
||||
inline PRInt32 nsTableRowFrame::GetRowIndex() const
|
||||
{
|
||||
NS_ASSERTION(0<=mRowIndex, "bad state: row index");
|
||||
|
@ -38,9 +38,6 @@ struct RowReflowState;
|
||||
class nsTableRowFrame : public nsHTMLContainerFrame
|
||||
{
|
||||
public:
|
||||
/** Initialization of frame as a row */
|
||||
void InitRowData(PRInt32 aRowIndex);
|
||||
|
||||
/** Initialization of data */
|
||||
NS_IMETHOD InitChildren(PRInt32 aRowIndex=-1);
|
||||
|
||||
@ -244,13 +241,6 @@ private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
inline void nsTableRowFrame::InitRowData(PRInt32 aRowIndex)
|
||||
{
|
||||
NS_ASSERTION(0<=aRowIndex, "bad param row index");
|
||||
mRowIndex = aRowIndex;
|
||||
}
|
||||
|
||||
inline PRInt32 nsTableRowFrame::GetRowIndex() const
|
||||
{
|
||||
NS_ASSERTION(0<=mRowIndex, "bad state: row index");
|
||||
|
Loading…
Reference in New Issue
Block a user