From 9178285a9c50258f69cdd6ea6a4923531fffebcd Mon Sep 17 00:00:00 2001 From: yuyoyuppe Date: Fri, 26 Aug 2022 23:02:35 +0200 Subject: [PATCH] fix spelling --- .../MeasureTool/MeasureToolCore/CoordinateSystemConversion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/MeasureTool/MeasureToolCore/CoordinateSystemConversion.h b/src/modules/MeasureTool/MeasureToolCore/CoordinateSystemConversion.h index 771f2fa8ad..a140809bf7 100644 --- a/src/modules/MeasureTool/MeasureToolCore/CoordinateSystemConversion.h +++ b/src/modules/MeasureTool/MeasureToolCore/CoordinateSystemConversion.h @@ -5,14 +5,14 @@ namespace convert { - // Converts a given point from multimonitor coordinate system to the one relative to HWND + // Converts a given point from multi-monitor coordinate system to the one relative to HWND inline POINT FromSystemToRelative(HWND window, POINT p) { ScreenToClient(window, &p); return p; } - // Converts a given point from multimonitor coordinate system to the one relative to HWND and also ready + // Converts a given point from multi-monitor coordinate system to the one relative to HWND and also ready // to be used in Direct2D calls with AA mode set to aliased inline POINT FromSystemToRelativeForDirect2D(HWND window, POINT p) {