| 200 | } |
| 201 | |
| 202 | void |
| 203 | SaveWindowSize(WindowPtr win) |
| 204 | { |
| 205 | short width, height; |
| 206 | Rect r; |
| 207 | |
| 208 | GetWindowBounds(win, kWindowContentRgn, &r); |
| 209 | width = r.right - r.left; |
| 210 | height = r.bottom - r.top; |
| 211 | SaveSize(GetWinKind(win), height, width); |
| 212 | } |
no test coverage detected