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
Notes: sideshowbarker 2024-07-18 22:31:03 +09:00
4 changed files with 4 additions and 0 deletions

View File

@@ -27,6 +27,7 @@
#pragma once
#include <LibGUI/Button.h>
#include <LibGUI/TableView.h>
#include <LibGUI/TextBox.h>
#include <LibGUI/Widget.h>