예제 #1
0
func (h *evtHandler) SetPrevioustHandler(prev EvtHandler) {
	p := wxPtr(h)
	prev.unhold()
	C.wxEvtHandler_SetPrevioustHandler(p, wxPtr(prev))
}
예제 #2
0
파일: evthandler.go 프로젝트: nzlov/wxgo
func (h *evtHandler) SetPrevioustHandler(prev EvtHandler) {
	p := ptr(h)
	globalObjectTable.unhold(prev)
	C.wxEvtHandler_SetPrevioustHandler(p, ptr(prev))
}