| 151 | } |
| 152 | |
| 153 | int DockableWindow::SetIcon(HICON icon) { |
| 154 | if (m_registered) |
| 155 | return -1; |
| 156 | |
| 157 | m_icon = icon; |
| 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | int DockableWindow::SetLocation(int location) { |
| 163 | if (m_registered) |
nothing calls this directly
no outgoing calls
no test coverage detected