| 691 | // ---------------------------------------------------------------------------------------- |
| 692 | |
| 693 | inline const rectangle resize_rect ( |
| 694 | const rectangle& rect, |
| 695 | unsigned long width, |
| 696 | unsigned long height |
| 697 | ) |
| 698 | { |
| 699 | return rectangle(rect.left(),rect.top(), |
| 700 | rect.left()+width-1, |
| 701 | rect.top()+height-1); |
| 702 | } |
| 703 | |
| 704 | // ---------------------------------------------------------------------------------------- |
| 705 |
no test coverage detected