Changeset 1679 for cprs/trunk/CPRS-Chart/uVA508CPRSCompatibility.pas
- Timestamp:
- May 7, 2015, 12:34:29 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/trunk/CPRS-Chart/uVA508CPRSCompatibility.pas
r830 r1679 276 276 procedure SpeakPatient; 277 277 begin 278 if assigned(Patient) and (Patient.Name <> '') then 279 GetScreenReader.Speak(Patient.Name); 278 //CQ #17491: Associating 508 change that allows JAWS to dictate the patient status indicator along with the name. 279 if assigned(Patient) and (Patient.Name <> '') and (Patient.Status <> '') then 280 GetScreenReader.Speak(Patient.Name + Patient.Status); 280 281 end; 281 282 … … 289 290 if text <> '' then 290 291 text := text + ', '; 291 if assigned(Patient) and (Patient.Name <> '') then 292 text := text + Patient.Name 292 //CQ #17491: Associating 508 change that allows JAWS to dictate the patient status indicator along with the name. 293 if assigned(Patient) and (Patient.Name <> '') and (Patient.Status <> '') then 294 text := text + Patient.Name + Patient.Status 293 295 else 294 296 text := text + 'no patient selected';
Note:
See TracChangeset
for help on using the changeset viewer.