mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
In off-list discussion, Steve mentioned that kdevelop / kate highlighting recognizes "FIXME", but not "FIX-ME", which has been the Audacity convention. This commit changes Audacity code to use the "FIXME" convention (though I've never known it as convention and MSVC doesn't recognize it).
Also, minor change in WaveTrack.cpp in the effort on bug 641. Should have no functional difference.
This commit is contained in:
@@ -737,7 +737,7 @@ void AudacityApp::OnMacOpenFile(wxCommandEvent & event)
|
||||
while (ofqueue.GetCount()) {
|
||||
wxString name(ofqueue[0]);
|
||||
ofqueue.RemoveAt(0);
|
||||
MRUOpen(name); // FIX-ME: Check the return result?
|
||||
MRUOpen(name); // FIXME: Check the return result?
|
||||
}
|
||||
}
|
||||
#endif //__WXMAC__
|
||||
@@ -794,7 +794,7 @@ bool AudacityApp::MRUOpen(wxString fullPathStr) {
|
||||
// Make sure it isn't already open.
|
||||
// Test here even though AudacityProject::OpenFile() also now checks, because
|
||||
// that method does not return the bad result.
|
||||
// That itself may be a FIX-ME.
|
||||
// That itself may be a FIXME.
|
||||
if (AudacityProject::IsAlreadyOpen(fullPathStr))
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user