mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-05 14:11:00 +01:00
Replace comparisons against "" with empty()
This commit is contained in:
@@ -90,7 +90,7 @@ ErrorDialog::ErrorDialog(
|
||||
long buttonMask;
|
||||
|
||||
// only add the help button if we have a URL
|
||||
buttonMask = (helpPage == wxT("")) ? eOkButton : (eHelpButton | eOkButton);
|
||||
buttonMask = (helpPage.empty()) ? eOkButton : (eHelpButton | eOkButton);
|
||||
dhelpPage = helpPage;
|
||||
dClose = Close;
|
||||
dModal = modal;
|
||||
|
||||
Reference in New Issue
Block a user