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
|
||||
{
|
||||
public:
|
||||
Bitmap(uint width, uint height);
|
||||
Bitmap(OLEDDisplay * display);
|
||||
explicit Bitmap(uint width, uint height);
|
||||
explicit Bitmap(OLEDDisplay * display);
|
||||
virtual ~Bitmap();
|
||||
|
||||
uint getWidth() const;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ private:
|
|||
class StatusFrame : public DisplayFrame
|
||||
{
|
||||
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() {}
|
||||
void drawStatusPage(Bitmap & bitmap) override;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue