1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 08:57:34 +00:00

LibGfx+LibGUI: Remove {Horizontal,Vertical}Line FrameShapes

These were added 3 years ago but never used. Their intended purpose
was probably superceded by the Separator widget.
This commit is contained in:
thankyouverycool 2022-02-25 07:36:15 -05:00 committed by Andreas Kling
parent f3cda3c830
commit 7a7e57ced0
2 changed files with 1 additions and 5 deletions

View file

@ -28,9 +28,7 @@ Frame::Frame()
{ Gfx::FrameShape::NoFrame, "NoFrame" }, { Gfx::FrameShape::NoFrame, "NoFrame" },
{ Gfx::FrameShape::Box, "Box" }, { Gfx::FrameShape::Box, "Box" },
{ Gfx::FrameShape::Container, "Container" }, { Gfx::FrameShape::Container, "Container" },
{ Gfx::FrameShape::Panel, "Panel" }, { Gfx::FrameShape::Panel, "Panel" });
{ Gfx::FrameShape::VerticalLine, "VerticalLine" },
{ Gfx::FrameShape::HorizontalLine, "HorizontalLine" });
} }
Frame::~Frame() Frame::~Frame()

View file

@ -28,8 +28,6 @@ enum class FrameShape {
Box, Box,
Container, Container,
Panel, Panel,
VerticalLine,
HorizontalLine
}; };
// FIXME: should this be in its own header? // FIXME: should this be in its own header?