From 3f97f733164742ced090669187752e9a95c33017 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Mon, 1 Jul 2024 15:43:18 +0200 Subject: [PATCH] LibWeb: Add `m_` prefix to `surface` member in SkiaSurface --- .../Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp b/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp index ff5438e068..b0295e79fc 100644 --- a/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp +++ b/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp @@ -40,15 +40,15 @@ namespace Web::Painting { class DisplayListPlayerSkia::SkiaSurface { public: - SkCanvas& canvas() const { return *surface->getCanvas(); } + SkCanvas& canvas() const { return *m_surface->getCanvas(); } SkiaSurface(sk_sp surface) - : surface(move(surface)) + : m_surface(move(surface)) { } private: - sk_sp surface; + sk_sp m_surface; }; #ifdef AK_OS_MACOS