1
0
Fork 0

PreLoad and PostLoad also from a separate file.

This commit is contained in:
ehofman 2009-11-28 14:35:52 +00:00 committed by Tim Moore
parent 30e535bc7b
commit 7af1f496e8

View file

@ -318,7 +318,7 @@ bool FGAerodynamics::Load(Element *element)
document = element;
}
FGModel::Load(element); // Perform base class Pre-Load
FGModel::Load(document); // Perform base class Pre-Load
DetermineAxisSystem(); // Detemine if Lift/Side/Drag, etc. is used.
@ -356,7 +356,7 @@ bool FGAerodynamics::Load(Element *element)
axis_element = document->FindNextElement("axis");
}
FGModel::PostLoad(element); // Perform base class Post-Load
FGModel::PostLoad(document); // Perform base class Post-Load
return true;
}