From cd7b6f55075ed1aff39ebc38528e6bcc6d4247e9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 13 Feb 2022 00:41:17 +0100 Subject: [PATCH] Fix build after a merge conflict in parent commit Rename CreateWithLogicalSize() to its new name. --- src/generic/wizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/wizard.cpp b/src/generic/wizard.cpp index 976e05ba0b..c221ac7ae1 100644 --- a/src/generic/wizard.cpp +++ b/src/generic/wizard.cpp @@ -967,7 +967,7 @@ bool wxWizard::ResizeBitmap(wxBitmap& bmp) if (!m_statbmp->GetBitmap().IsOk() || m_statbmp->GetBitmap().GetLogicalHeight() != bitmapHeight) { wxBitmap bitmap; - bitmap.CreateWithLogicalSize(bitmapWidth, bitmapHeight, bmp.GetScaleFactor(), bmp.GetDepth()); + bitmap.CreateWithDIPSize(bitmapWidth, bitmapHeight, bmp.GetScaleFactor(), bmp.GetDepth()); { wxMemoryDC dc; dc.SelectObject(bitmap);