From be2e674b5766ee503cfb07cc5fab9bd99c82d530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Fri, 12 Oct 2018 16:52:15 +0200 Subject: [PATCH] [apps] remove compilation warnings --- apps/shared/storage_function_graph_controller.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/shared/storage_function_graph_controller.h b/apps/shared/storage_function_graph_controller.h index 38029fa35..11bb3640b 100644 --- a/apps/shared/storage_function_graph_controller.h +++ b/apps/shared/storage_function_graph_controller.h @@ -35,10 +35,10 @@ private: // InteractiveCurveViewController /* When y auto is ticked, we use a display margin to be ensure that the user * can move the cursor along the curve without panning the window */ - float displayTopMarginRatio() { + float displayTopMarginRatio() override { return 0.09f; // cursorHeight/graphViewHeight } - float displayBottomMarginRatio(); + float displayBottomMarginRatio() override; // InteractiveCurveViewRangeDelegate InteractiveCurveViewRangeDelegate::Range computeYRange(InteractiveCurveViewRange * interactiveCurveViewRange) override; float estimatedBannerHeight() const;