Autosave

Hello!
In a program where I create a new Tree I use the statement
newtree->Autosave();
When compiling I get this error:
error: ‘class TTree’ has no member named ‘Autosave’
How can I do?
Thanks!
Elena

Instead of

newtree->Autosave(); do

newtree->AutoSave();
Rene