| 77 | } |
| 78 | |
| 79 | void NameEntryHelper::calc() { |
| 80 | switch(mAction) { |
| 81 | case 1: |
| 82 | mAction = 2; |
| 83 | break; |
| 84 | case 2: |
| 85 | edit(); |
| 86 | break; |
| 87 | } |
| 88 | for (int i = 0; i < 3; i++) { |
| 89 | mDrums[i]->calc(); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void NameEntryHelper::draw(J2DGrafContext *pGraf) { |
| 94 | switch(mAction) { |
nothing calls this directly
no test coverage detected