Ignore:
Timestamp:
May 7, 2015, 12:34:29 PM (9 years ago)
Author:
healthsevak
Message:

Updating the working copy to CPRS version 28

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/uVA508CPRSCompatibility.pas

    r830 r1679  
    276276procedure SpeakPatient;
    277277begin
    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);
    280281end;
    281282
     
    289290  if text <> '' then
    290291    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
    293295  else
    294296    text := text + 'no patient selected';
Note: See TracChangeset for help on using the changeset viewer.