1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:48:13 +00:00

LibCore: Remove ConfigFile::write_color_entry()

This method is currently unused and adds an unwanted dependency on
LibGfx.

This also adds some missing `LibGfx/Color.h` includes.
This commit is contained in:
MacDue 2022-06-04 20:19:44 +01:00 committed by Linus Groh
parent c579617375
commit fddff5f4f6
3 changed files with 1 additions and 7 deletions

View file

@ -15,7 +15,6 @@
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibCore/Stream.h>
#include <LibGfx/Color.h>
namespace Core {
@ -48,7 +47,6 @@ public:
void write_entry(String const& group, String const& key, String const& value);
void write_num_entry(String const& group, String const& key, int value);
void write_bool_entry(String const& group, String const& key, bool value);
void write_color_entry(String const& group, String const& key, Color value);
void dump() const;