| 30 | namespace { |
| 31 | |
| 32 | Result DeleteUser() { |
| 33 | const auto rc = accountextDeleteUser(acc::GetSelectedUser()); |
| 34 | if(R_SUCCEEDED(rc)) { |
| 35 | acc::ResetSelectedUser(); |
| 36 | g_MainApplication->ShowNotification(cfg::Strings.GetString(219)); |
| 37 | g_MainApplication->ReturnToParentLayout(); |
| 38 | } |
| 39 | return rc; |
| 40 | } |
| 41 | |
| 42 | } |
| 43 |
no test coverage detected