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