1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-25 07:31:14 +01:00

Sweep unnecessary wxString copies: xml

This commit is contained in:
Paul Licameli
2016-02-22 21:15:35 -05:00
parent cf3daebff6
commit 4961006f1b
2 changed files with 4 additions and 4 deletions

View File

@@ -32,10 +32,10 @@ public:
static bool IsGoodString(const wxString & str);
static bool IsGoodFileName(const wxString & strFileName, const wxString & strDirName = wxEmptyString);
static bool IsGoodFileString(wxString str);
static bool IsGoodFileString(const wxString &str);
static bool IsGoodSubdirName(const wxString & strSubdirName, const wxString & strDirName = wxEmptyString);
static bool IsGoodPathName(const wxString & strPathName);
static bool IsGoodPathString(wxString str);
static bool IsGoodPathString(const wxString &str);
/** @brief Check that the supplied string can be converted to a long (32bit)
* integer.