Changeset 1679 for cprs/trunk/VA


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

Updating the working copy to CPRS version 28

Location:
cprs/trunk/VA
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/VA/VA2006Utils.pas

    r829 r1679  
    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/trunk/VA/VA508Accessibility/JAWS/JAWS.bdsproj

    r829 r1679  
    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/trunk/VA/VA508Accessibility/VA508Access2006.dpk

    r829 r1679  
    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/trunk/VA/VAUtils.pas

    r829 r1679  
    2020                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
    2121
     22function Show508Message(Const Msg: String): TShow508MessageResult;
    2223function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone;
    2324                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
     
    281282    smiError:     Caption := ' Error';
    282283    smiQuestion:  Caption := ' Inquiry';
     284    smiInfo:      Caption := ' Information';
    283285  end;
    284286  Caption := Application.Title + Caption;
    285287  Result := ShowMsg(Msg, Caption, Icon, Buttons);
    286288end;
     289
     290function Show508Message(Const Msg: String): TShow508MessageResult;
     291begin
     292  Result := ShowMsg(msg);
     293end;
     294
    287295
    288296procedure FreeAndNilTStringsAndObjects(var Strings);
Note: See TracChangeset for help on using the changeset viewer.