1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Remove unnecessary initializers for empty wxString

This commit is contained in:
Paul Licameli
2019-03-15 14:41:21 -04:00
parent 135c2a71ce
commit 06b3b42794
24 changed files with 32 additions and 45 deletions

View File

@@ -47,7 +47,7 @@ class ShuttleCli final : public Shuttle
{
public:
wxString mParams;
ShuttleCli(){ mParams = wxT("") ;}
ShuttleCli() {}
virtual ~ShuttleCli() {}
bool ExchangeWithMaster(const wxString & Name) override;
};
@@ -63,7 +63,7 @@ public:
wxString mParams;
bool *pOptionalFlag;
CommandParameters * mpEap;
ShuttleParams(){ mParams = wxT("") ;mpEap=NULL;pOptionalFlag=NULL;}
ShuttleParams() { mpEap = NULL; pOptionalFlag = NULL; }
virtual ~ShuttleParams() {}
bool ExchangeWithMaster(const wxString & Name) override;
bool ShouldSet();