[MSPAINT] Rename some identifiers (#5362)

- s/CANVAS_HITTEST/HITTEST/
- s/m_whereHit/m_hitCanvasSizeBox/
- s/m_rcNew/m_rcResizing/
- Add comments to CCanvasWindow.
CORE-18867
This commit is contained in:
Katayama Hirofumi MZ
2023-06-24 19:39:07 +09:00
committed by GitHub
parent 5bb0a2c484
commit cb98e91b55
7 changed files with 48 additions and 47 deletions

View File

@@ -416,7 +416,7 @@ void SelectionModel::SetRectFromPoints(const POINT& ptFrom, const POINT& ptTo)
m_rc.bottom = max(ptFrom.y, ptTo.y);
}
void SelectionModel::Dragging(CANVAS_HITTEST hit, POINT pt)
void SelectionModel::Dragging(HITTEST hit, POINT pt)
{
switch (hit)
{