summaryrefslogtreecommitdiff
path: root/LibGUI/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-16 16:03:31 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-16 16:03:31 +0100
commit6fbabac4609d17ecb318ea87e6f1a84a8b69a0f5 (patch)
treef20e034fa6b4ec5f440ec13f56fc365dc8a3ac0f /LibGUI/Makefile
parentdd5ca1940a12a99fa113360f7aeabe5c18e33d59 (diff)
downloadserenity-6fbabac4609d17ecb318ea87e6f1a84a8b69a0f5.zip
LibGUI: Factor out scrolling logic from GTableView into a GScrollableWidget.
This then becomes the base class for GTableView. I'd like to share as much code as possible with GTextEditor and any other scrollable widgets.
Diffstat (limited to 'LibGUI/Makefile')
-rw-r--r--LibGUI/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/Makefile b/LibGUI/Makefile
index 7ff6144445..9e1d100c1a 100644
--- a/LibGUI/Makefile
+++ b/LibGUI/Makefile
@@ -37,6 +37,7 @@ LIBGUI_OBJS = \
GSortingProxyTableModel.o \
GStackWidget.o \
GEvent.o \
+ GScrollableWidget.o \
GWindow.o
OBJS = $(SHAREDGRAPHICS_OBJS) $(LIBGUI_OBJS)