mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Cleanup: Add some missing explicit constructors
This commit is contained in:
parent
4cf66d6522
commit
4292a38327
20 changed files with 46 additions and 46 deletions
|
|
@ -502,7 +502,8 @@ struct GraphEditorPanel::PluginComponent : public Component,
|
|||
struct GraphEditorPanel::ConnectorComponent : public Component,
|
||||
public SettableTooltipClient
|
||||
{
|
||||
ConnectorComponent (GraphEditorPanel& p) : panel (p), graph (p.graph)
|
||||
explicit ConnectorComponent (GraphEditorPanel& p)
|
||||
: panel (p), graph (p.graph)
|
||||
{
|
||||
setAlwaysOnTop (true);
|
||||
}
|
||||
|
|
@ -986,7 +987,7 @@ class GraphDocumentComponent::TitleBarComponent : public Component,
|
|||
private Button::Listener
|
||||
{
|
||||
public:
|
||||
TitleBarComponent (GraphDocumentComponent& graphDocumentComponent)
|
||||
explicit TitleBarComponent (GraphDocumentComponent& graphDocumentComponent)
|
||||
: owner (graphDocumentComponent)
|
||||
{
|
||||
static const unsigned char burgerMenuPathData[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue