From cbb21c0778046f312cc58eb633ab09c9fb9e09d8 Mon Sep 17 00:00:00 2001 From: Jose Diaz Rohena Date: Fri, 5 Jan 2024 16:55:12 +0100 Subject: [PATCH] Mark drawKnob private --- libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h b/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h index cd6df99e..4d8b0da7 100644 --- a/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h +++ b/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h @@ -48,12 +48,6 @@ class LookAndFeel : public juce::LookAndFeel_V4, const float toAngle, const juce::Rectangle bounds); - void drawKnob (juce::Graphics& g, - const float radius, - const float toAngle, - const juce::Rectangle bounds, - juce::Slider&); - void drawRotarySlider (juce::Graphics& g, int x, int y, @@ -121,6 +115,12 @@ class LookAndFeel : public juce::LookAndFeel_V4, }; private: + void drawKnob (juce::Graphics& g, + const float radius, + const float toAngle, + const juce::Rectangle bounds, + juce::Slider&); + FontHolder fontHolder; #include "MeterLookAndFeelMethods.h"