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: | 251 |
Nodes: | 16 (2 / 14) |
Uptime: | 139:05:44 |
Calls: | 5,526 |
Calls today: | 3 |
Files: | 11,671 |
Messages: | 5,096,312 |