File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace modm
29
29
class CommunicatingViewStack : public ViewStack
30
30
{
31
31
public:
32
- CommunicatingViewStack (modm::ColorGraphicDisplay * display, xpcc::Communicator* communicator) :
32
+ CommunicatingViewStack (modm::GraphicDisplay * display, xpcc::Communicator* communicator) :
33
33
ViewStack (display),
34
34
communicator (communicator)
35
35
{
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ namespace modm
39
39
class ViewStack
40
40
{
41
41
public:
42
- ViewStack (modm::ColorGraphicDisplay * display);
42
+ ViewStack (modm::GraphicDisplay * display);
43
43
44
44
virtual ~ViewStack ();
45
45
@@ -74,7 +74,7 @@ namespace modm
74
74
/* *
75
75
* @brief getDisplay access underlying GraphicDisplay
76
76
*/
77
- inline modm::ColorGraphicDisplay &
77
+ inline modm::GraphicDisplay &
78
78
getDisplay ()
79
79
{
80
80
return *this ->display ;
@@ -100,7 +100,7 @@ namespace modm
100
100
shortButtonPress (modm::MenuButtons::Button button);
101
101
102
102
protected:
103
- modm::ColorGraphicDisplay * display;
103
+ modm::GraphicDisplay * display;
104
104
modm::Stack< modm::AbstractView* , modm::LinkedList< modm::AbstractView* > > stack;
105
105
};
106
106
}
You can’t perform that action at this time.
0 commit comments