From e2be17f1508538df614ed51db8f650466ecadb3c Mon Sep 17 00:00:00 2001 From: Ruben Dashyan Date: Fri, 22 Feb 2019 15:44:49 +0100 Subject: [PATCH] [apps/graph] Graph::GraphControllerHelper::BannerView() returns a Graph::BannerView * Instead of a Shared::BannerView * --- apps/graph/graph/graph_controller_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/graph/graph/graph_controller_helper.h b/apps/graph/graph/graph_controller_helper.h index 57b8b37a2..f6c300cf9 100644 --- a/apps/graph/graph/graph_controller_helper.h +++ b/apps/graph/graph/graph_controller_helper.h @@ -1,7 +1,7 @@ #ifndef GRAPH_GRAPH_CONTROLLER_HELPER_H #define GRAPH_GRAPH_CONTROLLER_HELPER_H -#include "../../shared/banner_view.h" +#include "banner_view.h" #include "../../shared/text_field_delegate_app.h" #include "../../shared/interactive_curve_view_range.h" #include "../cartesian_function_store.h" @@ -14,7 +14,7 @@ class GraphControllerHelper { protected: bool privateMoveCursorHorizontally(Shared::CurveViewCursor * cursor, int direction, Shared::InteractiveCurveViewRange * range, int numberOfStepsInGradUnit, Ion::Storage::Record record, App * app, float cursorTopMarginRatio, float cursorRightMarginRatio, float cursorBottomMarginRatio, float cursorLeftMarginRatio); void reloadDerivativeInBannerViewForCursorOnFunction(Shared::CurveViewCursor * cursor, Ion::Storage::Record record, App * app); - virtual Shared::BannerView * bannerView() = 0; + virtual BannerView * bannerView() = 0; }; }