1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

GamesSettings+LibCards: Get rid of DeprecatedString

This commit is contained in:
kleines Filmröllchen 2023-06-26 20:49:32 +02:00 committed by Linus Groh
parent afaea38be2
commit bd13cc0732
5 changed files with 14 additions and 13 deletions

View file

@ -30,8 +30,8 @@ private:
CardSettingsWidget() = default;
ErrorOr<void> initialize();
bool set_card_back_image_path(DeprecatedString const&);
DeprecatedString card_back_image_path() const;
bool set_card_back_image_path(StringView);
String card_back_image_path() const;
RefPtr<CardGamePreview> m_preview_frame;
RefPtr<GUI::ColorInput> m_background_color_input;