---------------------------------------------------------------------------
| 200 | } |
| 201 | //--------------------------------------------------------------------------- |
| 202 | void TSetupForm::ToInterface(TLetter * p) |
| 203 | { |
| 204 | serverEdit->Text = p->server; |
| 205 | portEdit->Text = p->port; |
| 206 | usernameEdit->Text = p->username; |
| 207 | passwordEdit->Text = p->password; |
| 208 | sslComboBox->ItemIndex = p->ssl; |
| 209 | |
| 210 | senderEdit->Text = p->sender; |
| 211 | sender_nameEdit->Text = p->sender_name; |
| 212 | recipientEdit->Text = p->recipient; |
| 213 | subjectEdit->Text = p->subject; |
| 214 | messageMemo->Text = p->message; |
| 215 | } |
| 216 | //--------------------------------------------------------------------------- |
| 217 | void __fastcall TSetupForm::SmtpSelClick(TObject *Sender) |
| 218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected