| 1076 | } |
| 1077 | |
| 1078 | static void clearAll(PNHMapWindow data) |
| 1079 | { |
| 1080 | for (int x = 0; x < COLNO; x++) |
| 1081 | for (int y = 0; y < ROWNO; y++) { |
| 1082 | data->map[x][y] = nul_glyphinfo; |
| 1083 | data->bkmap[x][y] = nul_glyphinfo; |
| 1084 | data->locDirty[x][y] = TRUE; |
| 1085 | } |
| 1086 | data->mapDirty = TRUE; |
| 1087 | } |
| 1088 | |
| 1089 | static void dirtyAll(PNHMapWindow data) |
| 1090 | { |
no outgoing calls
no test coverage detected