HWGUI source does not compile cleanly under the last release of xHarbour.com base release, from what I can tell partly due to code blocks in the LOCAL declaration. Example below
From Editor.prg/Function EditMethod
Local bKeyDown := {|o,nKey|
IF nKey == VK_ESCAPE .AND. oDlg != Nil
oDlg := Nil
o:oParent:Close()
Return -1
ENDIF
Return -1
}
Once converted to
Local bKeyDown := {|o,nKey| bKeyDownF( o, nKey )}
With all the codeblock's code moved to a new function, it seems to compile and run, is there a flag/include I am missing on xharbour.com to allow this to compile?
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 113 |
Nodes: | 8 (1 / 7) |
Uptime: | 66:31:20 |
Calls: | 2,472 |
Calls today: | 1 |
Files: | 8,642 |
Messages: | 1,899,270 |