Ignore:
Timestamp:
May 8, 2015, 7:52:55 AM (9 years ago)
Author:
healthsevak
Message:

Committing the files for first time to this new branch

File:
1 edited

Legend:

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

    r830 r1693  
    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.