diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/SpreadsheetWidget.h | 1 | ||||
-rw-r--r-- | Userland/Applications/Spreadsheet/Workbook.cpp | 1 | ||||
-rw-r--r-- | Userland/Applications/Spreadsheet/Writers/XSV.h | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Applications/Spreadsheet/SpreadsheetWidget.h b/Userland/Applications/Spreadsheet/SpreadsheetWidget.h index 31d21c7f5c..d2ad495171 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetWidget.h +++ b/Userland/Applications/Spreadsheet/SpreadsheetWidget.h @@ -9,7 +9,6 @@ #include "SpreadsheetView.h" #include "Workbook.h" #include <AK/NonnullRefPtrVector.h> -#include <LibCore/Stream.h> #include <LibGUI/Clipboard.h> #include <LibGUI/TabWidget.h> #include <LibGUI/Widget.h> diff --git a/Userland/Applications/Spreadsheet/Workbook.cpp b/Userland/Applications/Spreadsheet/Workbook.cpp index 3df8daa501..e7add532cc 100644 --- a/Userland/Applications/Spreadsheet/Workbook.cpp +++ b/Userland/Applications/Spreadsheet/Workbook.cpp @@ -11,7 +11,6 @@ #include <AK/ByteBuffer.h> #include <AK/StringView.h> #include <LibCore/MimeData.h> -#include <LibCore/Stream.h> #include <LibFileSystemAccessClient/Client.h> #include <LibGUI/TextBox.h> #include <LibGUI/Window.h> diff --git a/Userland/Applications/Spreadsheet/Writers/XSV.h b/Userland/Applications/Spreadsheet/Writers/XSV.h index 818e3d3c1c..f003dfadf7 100644 --- a/Userland/Applications/Spreadsheet/Writers/XSV.h +++ b/Userland/Applications/Spreadsheet/Writers/XSV.h @@ -9,10 +9,10 @@ #include <AK/DeprecatedString.h> #include <AK/GenericLexer.h> #include <AK/OwnPtr.h> +#include <AK/Stream.h> #include <AK/StringView.h> #include <AK/Types.h> #include <AK/Vector.h> -#include <LibCore/Stream.h> namespace Writer { |