mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
fixing some cppchecks
This commit is contained in:
parent
5eec516fb9
commit
b5acc47728
|
|
@ -9,8 +9,8 @@ class OLEDDisplay;
|
||||||
class Bitmap
|
class Bitmap
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Bitmap(uint width, uint height);
|
explicit Bitmap(uint width, uint height);
|
||||||
Bitmap(OLEDDisplay * display);
|
explicit Bitmap(OLEDDisplay * display);
|
||||||
virtual ~Bitmap();
|
virtual ~Bitmap();
|
||||||
|
|
||||||
uint getWidth() const;
|
uint getWidth() const;
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ private:
|
||||||
class StatusFrame : public DisplayFrame
|
class StatusFrame : public DisplayFrame
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
StatusFrame(std::list<std::shared_ptr<Task>> tasks) : _tasks(tasks) {}
|
explicit StatusFrame(const std::list<std::shared_ptr<Task>> & tasks) : _tasks(tasks) {}
|
||||||
virtual ~StatusFrame() {}
|
virtual ~StatusFrame() {}
|
||||||
void drawStatusPage(Bitmap & bitmap) override;
|
void drawStatusPage(Bitmap & bitmap) override;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue