From b1c5026b81d8ae547f0674c89a1c6b97f11d8f9f Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Fri, 1 Aug 2025 04:59:06 +0200 Subject: [PATCH] LibWeb: Rename painter to recorder in DisplayListRecorderStateSaver --- Libraries/LibWeb/Painting/DisplayListRecorder.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Libraries/LibWeb/Painting/DisplayListRecorder.h b/Libraries/LibWeb/Painting/DisplayListRecorder.h index f678fd07f66..bd66541eefa 100644 --- a/Libraries/LibWeb/Painting/DisplayListRecorder.h +++ b/Libraries/LibWeb/Painting/DisplayListRecorder.h @@ -169,19 +169,19 @@ private: class DisplayListRecorderStateSaver { public: - explicit DisplayListRecorderStateSaver(DisplayListRecorder& painter) - : m_painter(painter) + explicit DisplayListRecorderStateSaver(DisplayListRecorder& recorder) + : m_recorder(recorder) { - m_painter.save(); + m_recorder.save(); } ~DisplayListRecorderStateSaver() { - m_painter.restore(); + m_recorder.restore(); } private: - DisplayListRecorder& m_painter; + DisplayListRecorder& m_recorder; }; }