Changeset 1695 for cprs/branches


Ignore:
Timestamp:
May 9, 2015, 7:15:46 AM (9 years ago)
Author:
healthsevak
Message:

updated these files for version 28

Location:
cprs/branches/HealthSevak-CPRS/VA
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/HealthSevak-CPRS/VA/VA2006Utils.pas

    r829 r1695  
    44
    55uses
    6   Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl;
     6  Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl,
     7  Forms;
     8
     9type
     10
     11  //This class exists to workaround TFrame tabstop set to True
     12  //Known defect with Delphi 2006: http://qc.embarcadero.com/wc/qcmain.aspx?d=12257
     13  TfraTabStopFalse = class(TFrame)
     14  private
     15    function GetTabStop: Boolean;
     16    procedure SetTabStop(const Value: Boolean);
     17  published
     18    property TabStop: Boolean read GetTabStop write SetTabStop stored False;
     19  end;
    720
    821// Fixes bug in Delphi 2006, where clicking on a header control section after
     
    1629
    1730type
     31
    1832  THeaderControl2006BugFixer = class(TComponent)
    1933  private
     
    6579end;
    6680
     81{ TfraTabStopFalse }
     82
     83function TfraTabStopFalse.GetTabStop: Boolean;
     84begin
     85  Result := False;
     86end;
     87
     88procedure TfraTabStopFalse.SetTabStop(const Value: Boolean);
     89begin
     90 //Do nothing here, just ignore the Value
     91end;
     92
    6793end.
  • cprs/branches/HealthSevak-CPRS/VA/VA508Accessibility/JAWS/JAWS.bdsproj

    r829 r1695  
    171171                        <VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
    172172                        <VersionInfoKeys Name="Comments"></VersionInfoKeys>
    173                 </VersionInfoKeys> 
    174    
    175    
    176    
    177     <Excluded_Packages>
     173                </VersionInfoKeys>  <Excluded_Packages>
    178174      <Excluded_Packages Name="D:\perforce\cprs\main\Packages\ORDateLib2006.bpl">CPRS Date/Time Dialogs</Excluded_Packages>
    179175    </Excluded_Packages>
  • cprs/branches/HealthSevak-CPRS/VA/VA508Accessibility/VA508Access2006.dpk

    r829 r1695  
    2727{$DESCRIPTION 'VA Section 508 Accessibility'}
    2828{$DESIGNONLY}
    29 {$IMPLICITBUILD OFF}
     29{$IMPLICITBUILD ON}
    3030{$DEFINE DEBUG_ACCESSIBILITY_MANAGER}
    3131
     
    3535  vcldb,
    3636  VclSmp,
    37   VAShared2006,
    38   rtl;
     37  rtl,
     38  VAShared2006;
    3939
    4040contains
  • cprs/branches/HealthSevak-CPRS/VA/VAUtils.pas

    r1693 r1695  
    11unit VAUtils;
    2                        
     2
    33{TODO  -oJeremy Merrill -cMessageHandlers : Change component list to use hex address for uComponentList
    44search instead of IndexOfObject, so that it used a binary search
     
    1919function ShowMsg(const Msg, Caption: string; Icon: TShow508MessageIcon = smiNone;
    2020                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
    21 function Show508Message(const Msg: string): TShow508MessageResult;
     21
     22function Show508Message(Const Msg: String): TShow508MessageResult;
    2223function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone;
    2324                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
Note: See TracChangeset for help on using the changeset viewer.