summaryrefslogtreecommitdiff
path: root/render/layout.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2018-01-03 21:18:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2018-01-05 13:49:51 +0000
commitcf3eba081a048d413158350000352ff2b5e5f220 (patch)
tree060df73db7808b1a51d1aca62192a92e445ffd13 /render/layout.h
parent5776d3448c50d58af0eac8f3960200aa1b5fc1a0 (diff)
downloadnetsurf-cf3eba081a048d413158350000352ff2b5e5f220.tar.gz
netsurf-cf3eba081a048d413158350000352ff2b5e5f220.tar.bz2
Layout: No need to expose layout_minmax_table().
Diffstat (limited to 'render/layout.h')
-rw-r--r--render/layout.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/render/layout.h b/render/layout.h
index 78a30028e..7a579ca22 100644
--- a/render/layout.h
+++ b/render/layout.h
@@ -63,14 +63,4 @@ bool layout_inline_container(struct box *box, int width, struct box *cont, int c
*/
void layout_calculate_descendant_bboxes(struct box *box);
-/**
- * Calculate minimum and maximum width of a table.
- *
- * \param table box of type TABLE
- * \param font_func Font functions
- * \post table->min_width and table->max_width filled in,
- * 0 <= table->min_width <= table->max_width
- */
-void layout_minmax_table(struct box *table, const struct gui_layout_table *font_func);
-
#endif