| 53 | // Operations |
| 54 | |
| 55 | BOOL SubclassWindow(HWND hWnd) |
| 56 | { |
| 57 | ATLASSERT(m_hWnd==NULL); |
| 58 | ATLASSERT(::IsWindow(hWnd)); |
| 59 | BOOL bRet = CWindowImpl< T, TBase, TWinTraits >::SubclassWindow(hWnd); |
| 60 | if( bRet ) _Init(); |
| 61 | return bRet; |
| 62 | } |
| 63 | |
| 64 | int AddColor(int iIndex, COLORREF clr) |
| 65 | { |
no test coverage detected