PR comments

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-13 14:07:28 -07:00
parent 972944e762
commit 880e3c99be
5 changed files with 9 additions and 7 deletions
+4 -4
View File
@@ -119,12 +119,12 @@ public:
: m_bAllOfSameType(true) {}
virtual ~CTrackViewKeyBundle() = default;
virtual bool AreAllKeysOfSameType() const override { return m_bAllOfSameType; }
bool AreAllKeysOfSameType() const override { return m_bAllOfSameType; }
virtual unsigned int GetKeyCount() const override { return static_cast<unsigned int>(m_keys.size()); }
virtual CTrackViewKeyHandle GetKey(unsigned int index) override { return m_keys[index]; }
unsigned int GetKeyCount() const override { return static_cast<unsigned int>(m_keys.size()); }
CTrackViewKeyHandle GetKey(unsigned int index) override { return m_keys[index]; }
virtual void SelectKeys(const bool bSelected) override;
void SelectKeys(const bool bSelected) override;
CTrackViewKeyHandle GetSingleSelectedKey();