mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +00:00
[MSPAINT] Use '%ld x %ld' rather than '%d x %d'
This commit is contained in:
parent
d9b2edcc59
commit
8ef878a87f
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ LRESULT CSelectionWindow::OnMouseMove(UINT nMsg, WPARAM wParam, LPARAM lParam, B
|
||||||
selectionModel.ModifyDestRect(m_ptDelta, m_iAction);
|
selectionModel.ModifyDestRect(m_ptDelta, m_iAction);
|
||||||
|
|
||||||
CString strSize;
|
CString strSize;
|
||||||
strSize.Format(_T("%d x %d"), selectionModel.GetDestRectWidth(), selectionModel.GetDestRectHeight());
|
strSize.Format(_T("%ld x %ld"), selectionModel.GetDestRectWidth(), selectionModel.GetDestRectHeight());
|
||||||
SendMessage(hStatusBar, SB_SETTEXT, 2, (LPARAM) (LPCTSTR) strSize);
|
SendMessage(hStatusBar, SB_SETTEXT, 2, (LPARAM) (LPCTSTR) strSize);
|
||||||
|
|
||||||
if (toolsModel.GetActiveTool() == TOOL_TEXT)
|
if (toolsModel.GetActiveTool() == TOOL_TEXT)
|
||||||
|
|
Loading…
Reference in a new issue