From e32419ce633af596c7a7f60dac3a8120b9223662 Mon Sep 17 00:00:00 2001 From: Ruben Dashyan Date: Fri, 26 Apr 2019 14:14:26 +0200 Subject: [PATCH] [apps/shared/interactive_curve_view_controller] InteractiveCurveViewRangeDelegate methods made private --- apps/shared/interactive_curve_view_controller.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/shared/interactive_curve_view_controller.h b/apps/shared/interactive_curve_view_controller.h index 6e8f67a91..0d84460b4 100644 --- a/apps/shared/interactive_curve_view_controller.h +++ b/apps/shared/interactive_curve_view_controller.h @@ -13,11 +13,6 @@ class InteractiveCurveViewController : public SimpleInteractiveCurveViewControll public: InteractiveCurveViewController(Responder * parentResponder, InputEventHandlerDelegate * inputEventHandlerDelegate, ButtonRowController * header, InteractiveCurveViewRange * interactiveRange, CurveView * curveView, CurveViewCursor * cursor, uint32_t * modelVersion, uint32_t * rangeVersion); - // InteractiveCurveViewRangeDelegate - float addMargin(float x, float range, bool isMin) override; - virtual float displayTopMarginRatio() = 0; - virtual float displayBottomMarginRatio() = 0; - const char * title() override; bool handleEvent(Ion::Events::Event event) override; void didBecomeFirstResponder() override; @@ -53,6 +48,11 @@ protected: OkView m_okView; private: + // InteractiveCurveViewRangeDelegate + float addMargin(float x, float range, bool isMin) override; + virtual float displayTopMarginRatio() = 0; + virtual float displayBottomMarginRatio() = 0; + uint32_t * m_modelVersion; uint32_t * m_rangeVersion; RangeParameterController m_rangeParameterController;