
		WxWin1.50, Beta release September 07,1993

From Als-Design (als@barjov.frmug.fr.net)

	Create a lot of makefile.nt files, for Windows/NT system
	[All tested but wxclips -- I don't have clip.lib ]
	Fix some warnings (windows NT) about assignement float/integer.
	Fix some cast required for Windows/NT, and rel. things
	(_export and so on...)
	And at last , but not least:
	Fix a bug in cl386 compiler, which sometimes isn't happy with
	defaults values on methods:

		If in a same module you define the class, a
		method with some defautls values, you
		cannot call it without all parameters in this module.
		Clear? No? An example:

		class foo {
			int foo1(int a,int b=0) ;
			int foo2() ;
		};

		int foo1(int a,int b)
		{
			code of foo1...
		}

		int foo2()
		{
			foo1(200) ; // cl386 doesn't like this...
			foo1(200,0) ; // rather, use this form.
		}

	If foo1(200) is called, cl386 abort compilation without any
	kind of warnings -- Then, it is relatively hard to find the
	line we need to change.
	
	This bug was reported to Microsoft, and I hope it will be fixed
	in final release! (I have beta/March release)
	[This bug is very annoying, because it manifests also 
	 with 'inline' method with defaults values...]
