mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:48:11 +00:00
LibGUI: Implement column_headers_visible in AbstractTableView
This was declared but not defined. :yakfusion:
This commit is contained in:
parent
33887917e4
commit
bfb587f29d
1 changed files with 5 additions and 0 deletions
|
@ -387,6 +387,11 @@ void AbstractTableView::set_column_headers_visible(bool visible)
|
|||
column_header().set_visible(visible);
|
||||
}
|
||||
|
||||
bool AbstractTableView::column_headers_visible() const
|
||||
{
|
||||
return column_header().is_visible();
|
||||
}
|
||||
|
||||
void AbstractTableView::did_scroll()
|
||||
{
|
||||
AbstractView::did_scroll();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue