March 23, 2005
when compiling with -w dmd says my function is not returning value
if auto is removed all goes ok

int ManageGotoLine()
{
	auto GotoLineDialog g=new GotoLineDialog;
	g.Create(this);
	sbtrack(theApp.m_readytext);
	Activate();
	return 1;
}