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:
@@ -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;
|
||||
|
@@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user