[BUG_FIXED] (Author: Yobo XIE) Fix crash issue on GotoLine.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1307 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
5463e69c52
commit
9cd8716863
@ -67,11 +67,19 @@ BOOL CALLBACK GoToLineDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// find hotspots
|
// find hotspots
|
||||||
|
/*
|
||||||
NMHDR nmhdr;
|
NMHDR nmhdr;
|
||||||
nmhdr.code = SCN_PAINTED;
|
nmhdr.code = SCN_PAINTED;
|
||||||
nmhdr.hwndFrom = _hSelf;
|
nmhdr.hwndFrom = _hSelf;
|
||||||
nmhdr.idFrom = ::GetDlgCtrlID(nmhdr.hwndFrom);
|
nmhdr.idFrom = ::GetDlgCtrlID(nmhdr.hwndFrom);
|
||||||
::SendMessage(_hParent, WM_NOTIFY, (WPARAM)LINKTRIGGERED, (LPARAM)&nmhdr);
|
::SendMessage(_hParent, WM_NOTIFY, (WPARAM)LINKTRIGGERED, (LPARAM)&nmhdr);
|
||||||
|
*/
|
||||||
|
|
||||||
|
SCNotification notification = {};
|
||||||
|
notification.nmhdr.code = SCN_PAINTED;
|
||||||
|
notification.nmhdr.hwndFrom = _hSelf;
|
||||||
|
notification.nmhdr.idFrom = ::GetDlgCtrlID(_hSelf);
|
||||||
|
::SendMessage(_hParent, WM_NOTIFY, (WPARAM)LINKTRIGGERED, (LPARAM)¬ification);
|
||||||
|
|
||||||
(*_ppEditView)->getFocus();
|
(*_ppEditView)->getFocus();
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user