| 70 | } |
| 71 | |
| 72 | bool ErrorUtils::CanShowError() |
| 73 | { |
| 74 | if (EoCClient == nullptr |
| 75 | || *EoCClient == nullptr |
| 76 | || (*EoCClient)->State == nullptr |
| 77 | || *(*EoCClient)->State == nullptr |
| 78 | || EoCClientHandleError == nullptr) { |
| 79 | return false; |
| 80 | } |
| 81 | |
| 82 | auto state = (*(*EoCClient)->State)->State; |
| 83 | return state == 19 |
| 84 | || state == 17 |
| 85 | || state == 28 |
| 86 | || state == 7 |
| 87 | || state == 30; |
| 88 | } |
| 89 | |
| 90 | bool ErrorUtils::FindModule() |
| 91 | { |
nothing calls this directly
no outgoing calls
no test coverage detected