Handepsilon:
This looks like a compilation-time (i.e: code) error, not run-time.
BroTranquility:
The issue may be that you're using a function that I don't *think* exists (GetDefaultObject). The only place that I found any mention of GetDefaultObject is this thread on Epic's forums, where the function is also defined below its usage.
For convenience, I've copied the relevant function here (though I don't guarantee that it'll work *at all*, since it's not my code):
final static function object GetDefaultObject(class ObjClass)
{
return FindObject(ObjClass.GetPackageName()$".Default__"$ObjClass, ObjClass);
}
Edit: Also, you may want to look into overriding CheckReplacement() for changing classes, instead.