1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

LibGUI: Do AbstractView::set_column_hidden() => set_column_visible()

This API felt backwards, so let's change it.
This commit is contained in:
Andreas Kling 2021-04-05 11:57:47 +02:00
parent cbc582e0df
commit 52de9b1753
7 changed files with 21 additions and 21 deletions

View file

@ -54,7 +54,7 @@ public:
bool column_headers_visible() const;
void set_column_headers_visible(bool);
void set_column_hidden(int, bool);
void set_column_visible(int, bool);
int column_width(int column) const;
void set_column_width(int column, int width);