mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 23:59:37 +02:00
these functions do not need to be virtual
This commit is contained in:
parent
d23c20c5d1
commit
3704dd0eeb
@ -105,8 +105,8 @@ class PROFILE_DLL_API BlockFile /* not final, abstract */ {
|
||||
virtual GetFileNameResult GetFileName() const;
|
||||
virtual void SetFileName(wxFileNameWrapper &&name);
|
||||
|
||||
virtual sampleCount GetLength() const { return mLen; }
|
||||
virtual void SetLength(const sampleCount newLen) { mLen = newLen; }
|
||||
sampleCount GetLength() const { return mLen; }
|
||||
void SetLength(const sampleCount newLen) { mLen = newLen; }
|
||||
|
||||
/// Locks this BlockFile, to prevent it from being moved
|
||||
virtual void Lock();
|
||||
|
Loading…
x
Reference in New Issue
Block a user