From 802a76d4a972db180a21efb9cb6e05220b724c22 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 16 Feb 2017 16:24:59 +0200 Subject: drop TimeBasedMode enum since we only ever use the AUTOMATIC enumerator Change-Id: I1370bf30ea31d0631e56524638ee843f18583933 --- chart2/inc/ChartView.hxx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'chart2/inc') diff --git a/chart2/inc/ChartView.hxx b/chart2/inc/ChartView.hxx index b82a3086f45f..fcb4f2b05593 100644 --- a/chart2/inc/ChartView.hxx +++ b/chart2/inc/ChartView.hxx @@ -55,22 +55,14 @@ class GL3DPlotterBase; class GL2DRenderer; struct CreateShapeParam2D; -enum TimeBasedMode -{ - MANUAL, - AUTOMATIC -}; - struct TimeBasedInfo { TimeBasedInfo(): bTimeBased(false), - nFrame(0), - eMode(AUTOMATIC) {} + nFrame(0) {} bool bTimeBased; size_t nFrame; - TimeBasedMode eMode; Timer maTimer; // only valid when we are in the time based mode -- cgit