diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2020-01-22 21:27:59 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-01-22 21:22:23 +0100 |
commit | b6aae25244068f75e692e6c3bf72c3822fbb90fa (patch) | |
tree | 83c5ea003b19f36550b4dc4da043866dd2d8a426 /Libraries/LibGUI/Makefile | |
parent | dec95cb8b39003d85a9aae46a69f0fbcf450830d (diff) | |
download | serenity-b6aae25244068f75e692e6c3bf72c3822fbb90fa.zip |
LibGUI: Rename GAbstractColumnView to GAbstractTableView
This is to prevent confusion with GColumnsView, which is unrelated.
Diffstat (limited to 'Libraries/LibGUI/Makefile')
-rw-r--r-- | Libraries/LibGUI/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/Makefile b/Libraries/LibGUI/Makefile index e8c408d4ce..c83a4bfe52 100644 --- a/Libraries/LibGUI/Makefile +++ b/Libraries/LibGUI/Makefile @@ -35,7 +35,7 @@ OBJS = \ GDesktop.o \ GProgressBar.o \ GAbstractView.o \ - GAbstractColumnView.o \ + GAbstractTableView.o \ GItemView.o \ GIcon.o \ GFrame.o \ |