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:
Andreas Kling 2020-08-26 00:15:48 +02:00
commit cfc30b11ba
Notes: sideshowbarker 2024-07-19 03:09:21 +09:00
5 changed files with 5 additions and 5 deletions

View file

@ -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; }