mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-06 11:42:17 +01:00
Replace comparisons against "" with empty()
This commit is contained in:
@@ -936,7 +936,7 @@ bool MacroCommands::ReportAndSkip(
|
||||
return false;
|
||||
|
||||
//TODO: Add a cancel button to these, and add the logic so that we can abort.
|
||||
if( params != wxT("") )
|
||||
if( !params.empty() )
|
||||
{
|
||||
AudacityMessageBox( wxString::Format(_("Apply %s with parameter(s)\n\n%s"),friendlyCommand, params),
|
||||
_("Test Mode"));
|
||||
|
||||
Reference in New Issue
Block a user