mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-24 23:09:26 -05:00
Merge pull request #601 from GullCode/ais_app-warning-fix
Added missing contructors/operators/etc in ais_app
This commit is contained in:
commit
35ed394b37
@ -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_ { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user