Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RadAd committed Jul 23, 2021
1 parent fdb0fea commit e1fd5f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RadEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ POINT RadEdit::OnPosFromChar(HWND hWnd, DWORD nChar) const
PCWSTR const buffer = (PCWSTR) LocalLock(m_hText);
#ifdef USE_UNISCRIBE
const DWORD nLineEnd = TextLineEnd(m_hText, nLineIndex);
const int nCount = nLineEnd - nLineIndex;
const DWORD nCount = nLineEnd - nLineIndex;

HRESULT hr;

Expand Down

0 comments on commit e1fd5f8

Please sign in to comment.