* Fix errors caused by #30

This commit is contained in:
iProgramInCpp
2023-08-06 12:59:46 +03:00
parent 9e9d2110e3
commit 2b105fe1eb
14 changed files with 137 additions and 90 deletions

View File

@@ -32,7 +32,7 @@ ConfirmScreen::ConfirmScreen(Screen* pScreen, const std::string& line1, const st
void ConfirmScreen::buttonClicked(Button* pButton)
{
postResult(pButton->buttonId == 0);
postResult(pButton->m_buttonId == 0);
}
bool ConfirmScreen::handleBackEvent(bool b)