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

GamesSettings: Rename Preview -> CardGamePreview

This commit is contained in:
Sam Atkins 2023-02-01 13:29:07 +00:00 committed by Andreas Kling
parent 286e3e6872
commit 66f2f4d647
3 changed files with 10 additions and 10 deletions

View file

@ -15,7 +15,7 @@
namespace GamesSettings {
class Preview;
class CardGamePreview;
class CardSettingsWidget final : public GUI::SettingsWindow::Tab {
C_OBJECT(CardSettingsWidget)
@ -31,7 +31,7 @@ private:
bool set_card_back_image_path(DeprecatedString const&);
DeprecatedString card_back_image_path() const;
RefPtr<Preview> m_preview_frame;
RefPtr<CardGamePreview> m_preview_frame;
RefPtr<GUI::ColorInput> m_background_color_input;
RefPtr<GUI::IconView> m_card_back_image_view;