From aec9f8db2aff0ea9c631b488487a544ac2fd8a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 30 Dec 2016 11:03:04 +0100 Subject: [PATCH] [apps] Delete redundant constexpr definition Change-Id: Ibc72723a576cc69a692b2dc263576a4d0d9d8161 --- apps/statistics/box_view.h | 1 - apps/statistics/histogram_view.h | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/statistics/box_view.h b/apps/statistics/box_view.h index 89072c72a..0fe0e91b9 100644 --- a/apps/statistics/box_view.h +++ b/apps/statistics/box_view.h @@ -19,7 +19,6 @@ public: bool selectQuantile(int selectedQuantile); void drawRect(KDContext * ctx, KDRect rect) const override; private: - constexpr static KDCoordinate k_bannerHeight = 30; char * label(Axis axis, int index) const override; View * bannerView() override; Data * m_data; diff --git a/apps/statistics/histogram_view.h b/apps/statistics/histogram_view.h index ef11961f0..729700571 100644 --- a/apps/statistics/histogram_view.h +++ b/apps/statistics/histogram_view.h @@ -16,7 +16,6 @@ public: void reload(); void drawRect(KDContext * ctx, KDRect rect) const override; private: - constexpr static KDCoordinate k_bannerHeight = 30; char * label(Axis axis, int index) const override; View * bannerView() override; float evaluateModelWithParameter(Model * curve, float t) const override;