To compile the sources you need djgpp v2+, TWS 1.21 and a pre-3 version of g++
(since I don't have the source to TWS).  Two changes have to be made to TWS:
to the file "include/tws/edit.h" add the line "friend class Spin;" after the
class declaration:

...
#define EDIT_TYPE_NEG_NUM     4
#define EDIT_TYPE_FLOAT_NUM   5

class EditText:public Window {
friend class Spin;			<--- Add this line
	public:
		EditText(Window *parent,ControlID ID,const char *title,...
...

The other change involves using your favourite hex editor to patch "libtws.a".
Change the byte at 0x26c31 from 0xd1 to 0xd0.  This enables the E_BOXUNCHECKED
event to work, needed by the times display.

Now just run make.

If you make any changes to the sources please let me know.

Jason Hood, 15 December, 2006.
