mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
LibGUI: Rename table view's "cell painting delegate" to "column *"
What you install with this API is a delegate that manages painting of all the items in a specific column, so let's make the API reflect that.
This commit is contained in:
parent
44e371635e
commit
cfc30b11ba
5 changed files with 5 additions and 5 deletions
|
@ -57,7 +57,7 @@ public:
|
|||
Gfx::TextAlignment column_header_alignment(int column) const;
|
||||
void set_column_header_alignment(int column, Gfx::TextAlignment);
|
||||
|
||||
void set_cell_painting_delegate(int column, OwnPtr<TableCellPaintingDelegate>);
|
||||
void set_column_painting_delegate(int column, OwnPtr<TableCellPaintingDelegate>);
|
||||
|
||||
int horizontal_padding() const { return m_horizontal_padding; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue