mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
just to save a PR: default asset visitor variables to emptystring
This commit is contained in:
parent
8bb43dd5ae
commit
ae5f766abe
|
|
@ -49,7 +49,10 @@ private:
|
|||
StringTableEntry mAssetNameTo;
|
||||
|
||||
public:
|
||||
TamlAssetDeclaredUpdateVisitor() {}
|
||||
TamlAssetDeclaredUpdateVisitor():
|
||||
mAssetIdFrom(StringTable->EmptyString()), mAssetIdTo(StringTable->EmptyString()),
|
||||
mAssetNameFrom(StringTable->EmptyString()), mAssetNameTo(StringTable->EmptyString()) {}
|
||||
|
||||
virtual ~TamlAssetDeclaredUpdateVisitor() {}
|
||||
|
||||
void setAssetIdFrom( const char* pAssetIdFrom )
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ private:
|
|||
StringTableEntry mAssetIdTo;
|
||||
|
||||
public:
|
||||
TamlAssetReferencedUpdateVisitor() {}
|
||||
TamlAssetReferencedUpdateVisitor() : mAssetIdFrom(StringTable->EmptyString()), mAssetIdTo(StringTable->EmptyString()) {}
|
||||
virtual ~TamlAssetReferencedUpdateVisitor() {}
|
||||
|
||||
void setAssetIdFrom( const char* pAssetIdFrom )
|
||||
|
|
|
|||
Loading…
Reference in a new issue