Commit 3b5aef66 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Remove unused functions.

parent 3d32cb9c
......@@ -441,11 +441,6 @@ static const IHTMLTableCellVtbl HTMLTableCellVtbl = {
HTMLTableCell_get_cellIndex
};
static inline HTMLTableCell *HTMLTableCell_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTableCell, element.node);
}
static inline HTMLTableCell *HTMLTableCell_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTableCell, element.node.event_target.dispex);
......@@ -871,11 +866,6 @@ static const IHTMLTableRowVtbl HTMLTableRowVtbl = {
HTMLTableRow_deleteCell
};
static inline HTMLTableRow *HTMLTableRow_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTableRow, element.node);
}
static inline HTMLTableRow *HTMLTableRow_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTableRow, element.node.event_target.dispex);
......@@ -1875,11 +1865,6 @@ static const IHTMLTable3Vtbl HTMLTable3Vtbl = {
HTMLTable3_get_summary
};
static inline HTMLTable *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTable, element.node);
}
static inline HTMLTable *impl_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTable, element.node.event_target.dispex);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment