1
0
Fork 0
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:
reuk 2020-04-26 18:21:44 +01:00
parent 4cf66d6522
commit 4292a38327
20 changed files with 46 additions and 46 deletions

View file

@ -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[]