mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-13 14:13:32 +02:00
Update some calls expecting TranslatableString in disabled code
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
#include "../widgets/AudacityMessageBox.h"
|
||||
#include "../widgets/ProgressDialog.h"
|
||||
|
||||
#define DESC _("QuickTime files")
|
||||
#define DESC XO("QuickTime files")
|
||||
|
||||
static const auto exts = {
|
||||
wxT("aif"),
|
||||
@@ -119,9 +119,9 @@ class QTImportPlugin final : public ImportPlugin
|
||||
mInitialized = false;
|
||||
}
|
||||
|
||||
wxString GetPluginStringID() { return wxT("quicktime"); }
|
||||
wxString GetPluginStringID() override { return wxT("quicktime"); }
|
||||
|
||||
TranslatableString GetPluginFormatDescription();
|
||||
TranslatableString GetPluginFormatDescription() override;
|
||||
std::unique_ptr<ImportFileHandle> Open(const wxString & Filename) override;
|
||||
|
||||
unsigned SequenceNumber() const override;
|
||||
|
Reference in New Issue
Block a user