mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 08:27:13 +01:00
More std:: style for wxString and wxArrayString...
... Replacing: Insert => insert RemoveAt => erase Remove => erase IsSameAs => operator == or operator != (but only when second argument was true or default)
This commit is contained in:
@@ -852,7 +852,7 @@ void AudacityApp::OnTimer(wxTimerEvent& WXUNUSED(event))
|
||||
while (ofqueue.size()) {
|
||||
wxString name;
|
||||
name.swap(ofqueue[0]);
|
||||
ofqueue.RemoveAt(0);
|
||||
ofqueue.erase( ofqueue.begin() );
|
||||
|
||||
// Get the user's attention if no file name was specified
|
||||
if (name.empty()) {
|
||||
|
||||
Reference in New Issue
Block a user