| 40 | } |
| 41 | |
| 42 | BOOL CHistoryDlg::OnInitDialog(CWindow /*wndFocus*/, LPARAM /*lInitParam*/) |
| 43 | { |
| 44 | SetDlgItemInt(IDC_HISTORY, m_historySize); |
| 45 | |
| 46 | CButton unlimited(GetDlgItem(IDC_UNLIMITED)); |
| 47 | unlimited.SetCheck(m_unlimited); |
| 48 | UpdateUi(); |
| 49 | |
| 50 | CenterWindow(GetParent()); |
| 51 | |
| 52 | return TRUE; |
| 53 | } |
| 54 | |
| 55 | void CHistoryDlg::OnUnlimited(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected