1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-13 14:13:32 +02:00

Fix 4 warnings about missing override keyword

This commit is contained in:
Paul Licameli
2018-07-23 14:48:44 -04:00
parent 83e01fb43b
commit 1adf833d48
2 changed files with 4 additions and 4 deletions

View File

@@ -180,8 +180,8 @@ public:
~FFmpegImportPlugin() { }
wxString GetPluginStringID() { return wxT("libav"); }
wxString GetPluginFormatDescription();
wxString GetPluginStringID() override { return wxT("libav"); }
wxString GetPluginFormatDescription() override;
///! Probes the file and opens it if appropriate
std::unique_ptr<ImportFileHandle> Open(const wxString &Filename) override;

View File

@@ -110,8 +110,8 @@ public:
~LOFImportPlugin() { }
wxString GetPluginStringID() { return wxT("lof"); }
wxString GetPluginFormatDescription();
wxString GetPluginStringID() override { return wxT("lof"); }
wxString GetPluginFormatDescription() override;
std::unique_ptr<ImportFileHandle> Open(const wxString &Filename) override;
};