mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-15 07:01:18 +02:00
More const and override
This commit is contained in:
@@ -92,12 +92,12 @@ public:
|
||||
PCMImportFileHandle(wxString name, SFFile &&file, SF_INFO info);
|
||||
~PCMImportFileHandle();
|
||||
|
||||
wxString GetFileDescription();
|
||||
wxString GetFileDescription() override;
|
||||
ByteCount GetFileUncompressedBytes() override;
|
||||
int Import(TrackFactory *trackFactory, TrackHolders &outTracks,
|
||||
Tags *tags) override;
|
||||
|
||||
wxInt32 GetStreamCount(){ return 1; }
|
||||
wxInt32 GetStreamCount() override { return 1; }
|
||||
|
||||
const wxArrayString &GetStreamInfo() override
|
||||
{
|
||||
@@ -105,7 +105,8 @@ public:
|
||||
return empty;
|
||||
}
|
||||
|
||||
void SetStreamUsage(wxInt32 WXUNUSED(StreamID), bool WXUNUSED(Use)){}
|
||||
void SetStreamUsage(wxInt32 WXUNUSED(StreamID), bool WXUNUSED(Use)) override
|
||||
{}
|
||||
|
||||
private:
|
||||
SFFile mFile;
|
||||
|
Reference in New Issue
Block a user