mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[apps/settings] AboutController::m_view should live inside the Settings
app This fixes the following bug: AboutController::view was built at first call of "AboutController::view()" but the Settings can be rebuilt later and the pointers might have moved (hence the ones used in AboutController::view constructor which is not rebuilt then)
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
namespace Settings {
|
||||
|
||||
AboutController::AboutController(Responder * parentResponder) :
|
||||
GenericSubController(parentResponder)
|
||||
GenericSubController(parentResponder),
|
||||
m_view(&m_selectableTableView)
|
||||
{
|
||||
for (int i = 0; i < k_totalNumberOfCell; i++) {
|
||||
m_cells[i].setMessageFont(KDFont::LargeFont);
|
||||
|
||||
Reference in New Issue
Block a user