| 169 | } |
| 170 | |
| 171 | int DockableWindow::SetTitle(const TCHAR* title) { |
| 172 | if (lstrlen(title) > (m_titleSize-1)) |
| 173 | return -1; |
| 174 | |
| 175 | lstrcpy(m_title, title); |
| 176 | |
| 177 | if (m_registered) |
| 178 | UpdateDockInfo(); |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | int DockableWindow::SetInfo(const TCHAR* info) { |
| 184 | if (lstrlen(info) > (m_infoSize-1)) |
nothing calls this directly
no outgoing calls
no test coverage detected