From 2f259efe86c9bbfea5f9e30aa29c1a607d6b377f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Tue, 25 Sep 2018 14:50:09 +0200 Subject: [PATCH] [poincare] Clean useless enum entry in Preferences --- poincare/include/poincare/preferences.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/poincare/include/poincare/preferences.h b/poincare/include/poincare/preferences.h index 548425705..f50e50a6b 100644 --- a/poincare/include/poincare/preferences.h +++ b/poincare/include/poincare/preferences.h @@ -20,13 +20,11 @@ public: }; enum class ComplexFormat { Cartesian = 0, - Polar = 1, - Default = 2 + Polar = 1 }; enum class AngleUnit { Degree = 0, - Radian = 1, - Default = 2 + Radian = 1 }; Preferences(); static Preferences * sharedPreferences();