summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/DropDownDemo.h
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2022-02-16 21:33:59 (GMT)
committerJF <JF002@users.noreply.github.com>2022-02-19 12:17:45 (GMT)
commitf829427c4186ec003d51c689c6831d076f3b0b69 (patch)
treea1e8f1ae6dcd05adb3f55e3a1153173d735223d0 /src/displayapp/screens/DropDownDemo.h
parentb857fdb9f438cd9a3440c82face944323301cfad (diff)
Remove unused and not compiling DropDownDemo
For ease of use the simulator uses a globbing expression to get all screens source files. This one was picked up as well and lead to a compilation error.
Diffstat (limited to 'src/displayapp/screens/DropDownDemo.h')
-rw-r--r--src/displayapp/screens/DropDownDemo.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/displayapp/screens/DropDownDemo.h b/src/displayapp/screens/DropDownDemo.h
deleted file mode 100644
index bcf0f45..0000000
--- a/src/displayapp/screens/DropDownDemo.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include "displayapp/screens/Screen.h"
-#include <lvgl/src/lv_core/lv_obj.h>
-
-namespace Pinetime {
- namespace Applications {
- namespace Screens {
-
- class DropDownDemo : public Screen {
- public:
- DropDownDemo(DisplayApp* app);
- ~DropDownDemo() override;
-
- bool Refresh() override;
-
- bool OnTouchEvent(TouchEvents event) override;
-
- private:
- lv_obj_t* ddlist;
-
- bool isDropDownOpened = false;
- };
- }
- }
-}