| 181 | } |
| 182 | |
| 183 | int DockableWindow::SetInfo(const TCHAR* info) { |
| 184 | if (lstrlen(info) > (m_infoSize-1)) |
| 185 | return -1; |
| 186 | |
| 187 | lstrcpy(m_info, info); |
| 188 | |
| 189 | if (m_registered) |
| 190 | UpdateDockInfo(); |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | int DockableWindow::RegisterDockableDialog() { |
| 196 | if (m_registered) //it is an error to register twice |
nothing calls this directly
no outgoing calls
no test coverage detected