| 97 | |
| 98 | template <class ImageType> |
| 99 | bool ImageBaseAboutWindow<ImageType>::onMouse(const MouseEvent& ev) |
| 100 | { |
| 101 | if (ev.press) |
| 102 | { |
| 103 | close(); |
| 104 | return true; |
| 105 | } |
| 106 | |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | // -------------------------------------------------------------------------------------------------------------------- |
| 111 |
nothing calls this directly
no test coverage detected