[apps/graph] Graph::GraphControllerHelper::BannerView() returns a Graph::BannerView *

Instead of a Shared::BannerView *
This commit is contained in:
Ruben Dashyan
2019-02-22 15:44:49 +01:00
committed by Émilie Feral
parent 51c36c8f86
commit e2be17f150

View File

@@ -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;
};
}