mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/statistics] Inline method in BoxController
This commit is contained in:
@@ -37,10 +37,6 @@ const char * BoxController::title() {
|
||||
return I18n::translate(I18n::Message::BoxTab);
|
||||
}
|
||||
|
||||
View * BoxController::view() {
|
||||
return &m_view;
|
||||
}
|
||||
|
||||
void BoxController::viewWillAppear() {
|
||||
m_view.selectMainView(true);
|
||||
reloadBannerView();
|
||||
|
||||
@@ -19,7 +19,7 @@ public:
|
||||
|
||||
// ViewController
|
||||
const char * title() override;
|
||||
View * view() override;
|
||||
View * view() override { return &m_view; }
|
||||
void viewWillAppear() override;
|
||||
ViewController::DisplayParameter displayParameter() override { return ViewController::DisplayParameter::DoNotShowOwnTitle; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user