| 102 | } |
| 103 | |
| 104 | int SettingsDialog::SaveGlobalPath() { |
| 105 | TCHAR TTextBuffer[MAX_PATH]; |
| 106 | ::GetDlgItemText(m_hwnd, IDC_EDIT_CACHE, TTextBuffer, MAX_PATH); |
| 107 | |
| 108 | m_ftpSettings->SetGlobalCachePath(TTextBuffer); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | int SettingsDialog::SaveMasterPassword() { |
| 114 | char password[Encryption::KeySize+1]; |
nothing calls this directly
no test coverage detected