[apps/stats] Remove unnecessary constructor parameter

This commit is contained in:
Léa Saviot
2018-05-24 16:32:51 +02:00
parent b762471574
commit 7b37f4d0bc
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ namespace Statistics {
static inline float min(float x, float y) { return (x<y ? x : y); }
static inline float max(float x, float y) { return (x>y ? x : y); }
HistogramController::HistogramController(Responder * parentResponder, ButtonRowController * header, Store * store, int series, uint32_t * storeVersion, uint32_t * barVersion, uint32_t * rangeVersion, int * selectedBarIndex) :
HistogramController::HistogramController(Responder * parentResponder, ButtonRowController * header, Store * store, uint32_t * storeVersion, uint32_t * barVersion, uint32_t * rangeVersion, int * selectedBarIndex) :
ViewController(parentResponder),
ButtonRowDelegate(header, nullptr),
m_store(store),