| 806 | } |
| 807 | |
| 808 | int ProfilesDialog::LoadFiletypes() { |
| 809 | HWND hListASCII = ::GetDlgItem(m_hPageTransfer, IDC_LIST_ASCII); |
| 810 | HWND hListBinary = ::GetDlgItem(m_hPageTransfer, IDC_LIST_BINARY); |
| 811 | |
| 812 | ListBox_ResetContent(hListASCII); |
| 813 | ListBox_ResetContent(hListBinary); |
| 814 | |
| 815 | for(int i = 0; i < m_currentProfile->GetAsciiCount(); i++) { |
| 816 | ListBox_AddString(hListASCII, m_currentProfile->GetAsciiType(i)); |
| 817 | } |
| 818 | for(int i = 0; i < m_currentProfile->GetBinaryCount(); i++) { |
| 819 | ListBox_AddString(hListBinary, m_currentProfile->GetBinaryType(i)); |
| 820 | } |
| 821 | |
| 822 | return 0; |
| 823 | } |
| 824 | |
| 825 | int ProfilesDialog::LoadCacheMaps() { |
| 826 | HWND hListview = ::GetDlgItem(m_hPageCache, IDC_LIST_CACHE); |
nothing calls this directly
no test coverage detected