| 56 | } |
| 57 | |
| 58 | int CScreenWindows::Width() |
| 59 | { |
| 60 | if(m_Screen.isNull()) |
| 61 | GetImage(false); |
| 62 | if(m_Screen.isNull()) |
| 63 | return GetSystemMetrics(SM_CXSCREEN); |
| 64 | return m_Screen.width(); |
| 65 | } |
| 66 | |
| 67 | int CScreenWindows::Height() |
| 68 | { |
nothing calls this directly
no test coverage detected