1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

WrappedType is immutable (though it points to something mutable)

This commit is contained in:
Paul Licameli
2019-02-26 13:40:42 -05:00
parent 459582ce00
commit a5e0b66d1f
4 changed files with 29 additions and 35 deletions

View File

@@ -66,15 +66,6 @@ bool WrappedType::ValuesMatch( const WrappedType & W )
return false;
}
void WrappedType::Init()
{
eWrappedType = eWrappedNotSet;
mpStr = NULL;
mpInt = NULL;
mpDouble = NULL;
mpBool = NULL;
}
void WrappedType::WriteToAsWrappedType( const WrappedType & W )
{
wxASSERT( W.eWrappedType == eWrappedType );