mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 08:09:32 +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 GetFileNameResult GetFileName() const;
|
||||||
virtual void SetFileName(wxFileNameWrapper &&name);
|
virtual void SetFileName(wxFileNameWrapper &&name);
|
||||||
|
|
||||||
virtual sampleCount GetLength() const { return mLen; }
|
sampleCount GetLength() const { return mLen; }
|
||||||
virtual void SetLength(const sampleCount newLen) { mLen = newLen; }
|
void SetLength(const sampleCount newLen) { mLen = newLen; }
|
||||||
|
|
||||||
/// Locks this BlockFile, to prevent it from being moved
|
/// Locks this BlockFile, to prevent it from being moved
|
||||||
virtual void Lock();
|
virtual void Lock();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user