Module: wine Branch: master Commit: 3b5aef662f80e944555797b1616bc911a3518029 URL: https://gitlab.winehq.org/wine/wine/-/commit/3b5aef662f80e944555797b1616bc91...
Author: Jacek Caban jacek@codeweavers.com Date: Fri Sep 22 11:19:49 2023 +0200
mshtml: Remove unused functions.
---
dlls/mshtml/htmltable.c | 15 --------------- 1 file changed, 15 deletions(-)
diff --git a/dlls/mshtml/htmltable.c b/dlls/mshtml/htmltable.c index e1431dddebb..85d1858fed7 100644 --- a/dlls/mshtml/htmltable.c +++ b/dlls/mshtml/htmltable.c @@ -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);