diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-02-09 03:02:46 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-13 00:50:07 +0000 |
commit | 606a3982f34d777f121fcc4aa964141199676c20 (patch) | |
tree | 836fef41d11f1b77f4dac7d699e5c9f720ee4ff1 /Userland/Applications/PixelPaint/PaletteWidget.h | |
parent | a96339b72b3b417ffaa4fbb4e7575149f749acaa (diff) | |
download | serenity-606a3982f34d777f121fcc4aa964141199676c20.zip |
LibCore: Move Stream-based file into the `Core` namespace
Diffstat (limited to 'Userland/Applications/PixelPaint/PaletteWidget.h')
-rw-r--r-- | Userland/Applications/PixelPaint/PaletteWidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/PixelPaint/PaletteWidget.h b/Userland/Applications/PixelPaint/PaletteWidget.h index aedfce3438..362c29f518 100644 --- a/Userland/Applications/PixelPaint/PaletteWidget.h +++ b/Userland/Applications/PixelPaint/PaletteWidget.h @@ -31,9 +31,9 @@ public: Vector<Color> colors(); - static ErrorOr<Vector<Color>> load_palette_file(NonnullOwnPtr<Core::Stream::File>); + static ErrorOr<Vector<Color>> load_palette_file(NonnullOwnPtr<Core::File>); static ErrorOr<Vector<Color>> load_palette_path(DeprecatedString const&); - static ErrorOr<void> save_palette_file(Vector<Color>, NonnullOwnPtr<Core::Stream::File>); + static ErrorOr<void> save_palette_file(Vector<Color>, NonnullOwnPtr<Core::File>); static Vector<Color> fallback_colors(); |