| 160 | } |
| 161 | |
| 162 | int DockableWindow::SetLocation(int location) { |
| 163 | if (m_registered) |
| 164 | return -1; |
| 165 | |
| 166 | m_docklocation = location; |
| 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
| 171 | int DockableWindow::SetTitle(const TCHAR* title) { |
| 172 | if (lstrlen(title) > (m_titleSize-1)) |
nothing calls this directly
no outgoing calls
no test coverage detected