1
0
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:
Paul Licameli
2019-12-28 13:58:17 -05:00
parent 18942d9909
commit 259359a283
5 changed files with 12 additions and 12 deletions

View File

@@ -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;