InfiniTime.git

commit 4b2a61ea4ac9e3faf8fac0c871c9c998e8d2dd59

Author: Riku Isokoski <riksu9000@gmail.com>

LittleVgl: Small cleanup

 src/displayapp/LittleVgl.cpp | 15 ++++++---------
 src/displayapp/LittleVgl.h | 1 -


diff --git a/src/displayapp/LittleVgl.cpp b/src/displayapp/LittleVgl.cpp
index ad05ea2406b58955fec30d2b76fbc5ead7e0890d..e3d564a353d6ce19d67841efda0cef06c31df8d6 100644
--- a/src/displayapp/LittleVgl.cpp
+++ b/src/displayapp/LittleVgl.cpp
@@ -3,13 +3,17 @@ #include "displayapp/InfiniTimeTheme.h"
 
 #include <FreeRTOS.h>
 #include <task.h>
-//#include <projdefs.h>
 #include "drivers/Cst816s.h"
 #include "drivers/St7789.h"
 
 using namespace Pinetime::Components;
 
-lv_style_t* LabelBigStyle = nullptr;
+namespace {
+  void InitTheme() {
+    lv_theme_t* theme = lv_pinetime_theme_init();
+    lv_theme_set_act(theme);
+  }
+}
 
 static void disp_flush(lv_disp_drv_t* disp_drv, const lv_area_t* area, lv_color_t* color_p) {
   auto* lvgl = static_cast<LittleVgl*>(disp_drv->user_data);
@@ -192,10 +196,3 @@     ptr->state = LV_INDEV_STATE_REL;
   }
   return false;
 }
-
-void LittleVgl::InitTheme() {
-
-  lv_theme_t* th = lv_pinetime_theme_init();
-
-  lv_theme_set_act(th);
-}




diff --git a/src/displayapp/LittleVgl.h b/src/displayapp/LittleVgl.h
index aedb69d8ccb57e24509347cda4ad2e1813f2d6a2..7bd0198c691d427582940f8e0c719b3fc4eeb8fe 100644
--- a/src/displayapp/LittleVgl.h
+++ b/src/displayapp/LittleVgl.h
@@ -37,7 +37,6 @@
     private:
       void InitDisplay();
       void InitTouchpad();
-      void InitTheme();
 
       Pinetime::Drivers::St7789& lcd;
       Pinetime::Drivers::Cst816S& touchPanel;