1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-20 09:31:15 +02:00

rename a function

This commit is contained in:
Paul Licameli
2019-03-03 14:39:44 -05:00
parent 617ac20e7f
commit f2405f3023
14 changed files with 15 additions and 15 deletions

View File

@@ -84,10 +84,10 @@ public:
// This function returns nonempty only when that is the case, and lists
// the possible extensions of such files (an empty string in a nonempty
// array means any file is a candidate).
virtual wxArrayString FileExtensions() = 0;
virtual wxArrayString GetFileExtensions() = 0;
// Returns empty, or else, where to copy a plug-in file or bundle.
// Drag-and-drop is supported only if FileExtensions() returns nonempty and
// Drag-and-drop is supported only if GetFileExtensions() returns nonempty and
// this function returns nonempty.
virtual wxString InstallPath() = 0;