Fixed the previous Cis Fix in TUObjectPropertyBase

[CL 2704137 by Maciej Mroz in Main branch]
This commit is contained in:
Maciej Mroz
2015-09-24 07:17:08 -04:00
committed by maciej.mroz@epicgames.com
parent 776660ed97
commit edacaa6860

View File

@@ -1860,7 +1860,7 @@ public:
virtual FString GetCPPType(FString* ExtendedTypeText, uint32 CPPExportFlags) const override
{
return UObjectPropertyBase::GetCPPTypeCustom(ExtendedTypeText, CPPExportFlags, UObjectPropertyBase::PropertyClass);
return this->GetCPPTypeCustom(ExtendedTypeText, CPPExportFlags, UObjectPropertyBase::PropertyClass);
}
};