| 65 | } |
| 66 | |
| 67 | int CScreenWindows::Height() |
| 68 | { |
| 69 | if(m_Screen.isNull()) |
| 70 | GetImage(false); |
| 71 | if(m_Screen.isNull()) |
| 72 | return GetSystemMetrics(SM_CYSCREEN); |
| 73 | return m_Screen.height(); |
| 74 | } |
| 75 | |
| 76 | int CScreenWindows::VirtualTop() |
| 77 | { |
nothing calls this directly
no test coverage detected