mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-22 13:17:24 +00:00
Added missing contructors/operators/etc in ais_app
This commit is contained in:
@@ -254,8 +254,18 @@ AISRecentEntryDetailView::AISRecentEntryDetailView(NavigationView& nav) {
|
|||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
AISRecentEntryDetailView::AISRecentEntryDetailView(const AISRecentEntryDetailView&Entry) : View()
|
||||||
|
{
|
||||||
|
(void)Entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
AISRecentEntryDetailView & AISRecentEntryDetailView::operator=(const AISRecentEntryDetailView&Entry)
|
||||||
|
{
|
||||||
|
(void)Entry;
|
||||||
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AISRecentEntryDetailView::update_position() {
|
void AISRecentEntryDetailView::update_position() {
|
||||||
|
@@ -127,6 +127,9 @@ public:
|
|||||||
void focus() override;
|
void focus() override;
|
||||||
void paint(Painter&) override;
|
void paint(Painter&) override;
|
||||||
|
|
||||||
|
AISRecentEntryDetailView(const AISRecentEntryDetailView&Entry);
|
||||||
|
AISRecentEntryDetailView &operator=(const AISRecentEntryDetailView&Entry);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
AISRecentEntry entry_ { };
|
AISRecentEntry entry_ { };
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user