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

Everywhere: Add semantically-missing includes

For example, FindInFilesWidget.h mentions GUI::TableView, but did not include
it. On the other hand, all source files that include FindInFilesWidget.h
also include TableView.h, so the issue is only cosmetical.
This commit is contained in:
Ben Wiederhake 2021-01-21 22:31:00 +01:00 committed by Andreas Kling
parent 667b417d9f
commit 7961e09c29
4 changed files with 4 additions and 0 deletions

View file

@ -28,6 +28,7 @@
#include <AK/Function.h>
#include <AK/Weakable.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Rect.h>