mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Add final specifiers in implementation files
This commit is contained in:
parent
aee5a3a45e
commit
6bf9bb9a2e
315 changed files with 1031 additions and 1025 deletions
|
|
@ -26,7 +26,7 @@
|
|||
#include "MainComponent.h"
|
||||
|
||||
//==============================================================================
|
||||
struct SidePanelHeader : public Component
|
||||
struct SidePanelHeader final : public Component
|
||||
{
|
||||
SidePanelHeader (MainComponent& o)
|
||||
: owner (o)
|
||||
|
|
@ -132,8 +132,8 @@ struct SidePanelHeader : public Component
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
class DemoList : public Component,
|
||||
public ListBoxModel
|
||||
class DemoList final : public Component,
|
||||
public ListBoxModel
|
||||
{
|
||||
public:
|
||||
DemoList (DemoContentComponent& holder)
|
||||
|
|
@ -214,7 +214,7 @@ public:
|
|||
|
||||
private:
|
||||
//==============================================================================
|
||||
class CategoryListHeaderComponent : public Button
|
||||
class CategoryListHeaderComponent final : public Button
|
||||
{
|
||||
public:
|
||||
explicit CategoryListHeaderComponent (DemoList& o)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue