| 24 | END_MESSAGE_MAP() |
| 25 | |
| 26 | BOOL CMeterBar::SetParts(int nParts, int* pWidths) |
| 27 | { |
| 28 | m_nParts = nParts; |
| 29 | m_pWidths = new int[nParts]; |
| 30 | int i; |
| 31 | for (i = 0; i < nParts; i++) |
| 32 | { |
| 33 | m_pWidths[i] = pWidths[i]; |
| 34 | } |
| 35 | return (TRUE); |
| 36 | } |
| 37 | |
| 38 | // CMeterBar ��Ϣ�������� |
| 39 |
no outgoing calls
no test coverage detected