From 387fecea7f9d53f40e35141873c8506a8b40c341 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 22 Dec 2023 22:30:57 -0500 Subject: [PATCH] LibPDF: Fix typo in a variable name No behavior change. --- Userland/Libraries/LibPDF/Renderer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibPDF/Renderer.cpp b/Userland/Libraries/LibPDF/Renderer.cpp index cd31d03a4a..c528a5d6cd 100644 --- a/Userland/Libraries/LibPDF/Renderer.cpp +++ b/Userland/Libraries/LibPDF/Renderer.cpp @@ -1165,8 +1165,8 @@ Gfx::AffineTransform Renderer::calculate_image_space_transformation(int width, i void Renderer::show_empty_image(int width, int height) { - auto image_space_transofmation = calculate_image_space_transformation(width, height); - auto image_border = image_space_transofmation.map(Gfx::IntRect { 0, 0, width, height }); + auto image_space_transformation = calculate_image_space_transformation(width, height); + auto image_border = image_space_transformation.map(Gfx::IntRect { 0, 0, width, height }); m_painter.stroke_path(rect_path(image_border), Color::Black, 1); }