Advertisement
Smi-ChetDev

Client Area fix

Aug 20th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. RECT CWindow::GetClientArea()
  2. {
  3. RECT client;
  4. client.left = m_x + 8;
  5. client.top = m_y + 1 + 27;
  6. client.right = m_iWidth - 4 - 12;
  7. client.bottom = m_iHeight - 2 - 8 - 26 + 500;
  8. return client;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement