---------------------------------------------------------------------------
| 94 | } |
| 95 | //--------------------------------------------------------------------------- |
| 96 | void TMessProcess::Load(XMLElementEx * p) |
| 97 | { |
| 98 | bIgnore = p->rb("ignore"); |
| 99 | bAlarm = p->rb("alarm"); |
| 100 | AlarmMess = p->rs("alarmmess"); |
| 101 | bSound = p->rb("sound"); |
| 102 | SoundFile = p->rs("soundfile", "alarm.wav"); |
| 103 | PlayCount = p->ri("playcount"); |
| 104 | bSendMail = p->rb("sendmail"); |
| 105 | Recipient = p->rs("recipient"); |
| 106 | bRunProg = p->rb("runprog"); |
| 107 | ProgFile = p->rs("progfile"); |
| 108 | bProgHide = p->rb("proghide"); |
| 109 | bSaveToFile = p->rb("savetofile"); |
| 110 | SaveFile = p->ri("savefile", -1); |
| 111 | } |
| 112 | //--------------------------------------------------------------------------- |
| 113 | //--------------------------------------------------------------------------- |
| 114 | //--------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected