Changeset 1679 for cprs/trunk/VA
- Timestamp:
- May 7, 2015, 12:34:29 PM (10 years ago)
- Location:
- cprs/trunk/VA
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/trunk/VA/VA2006Utils.pas
r829 r1679 4 4 5 5 uses 6 Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl; 6 Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl, 7 Forms; 8 9 type 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; 7 20 8 21 // Fixes bug in Delphi 2006, where clicking on a header control section after … … 16 29 17 30 type 31 18 32 THeaderControl2006BugFixer = class(TComponent) 19 33 private … … 65 79 end; 66 80 81 { TfraTabStopFalse } 82 83 function TfraTabStopFalse.GetTabStop: Boolean; 84 begin 85 Result := False; 86 end; 87 88 procedure TfraTabStopFalse.SetTabStop(const Value: Boolean); 89 begin 90 //Do nothing here, just ignore the Value 91 end; 92 67 93 end. -
cprs/trunk/VA/VA508Accessibility/JAWS/JAWS.bdsproj
r829 r1679 171 171 <VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys> 172 172 <VersionInfoKeys Name="Comments"></VersionInfoKeys> 173 </VersionInfoKeys> 174 175 176 177 <Excluded_Packages> 173 </VersionInfoKeys> <Excluded_Packages> 178 174 <Excluded_Packages Name="D:\perforce\cprs\main\Packages\ORDateLib2006.bpl">CPRS Date/Time Dialogs</Excluded_Packages> 179 175 </Excluded_Packages> -
cprs/trunk/VA/VA508Accessibility/VA508Access2006.dpk
r829 r1679 27 27 {$DESCRIPTION 'VA Section 508 Accessibility'} 28 28 {$DESIGNONLY} 29 {$IMPLICITBUILD O FF}29 {$IMPLICITBUILD ON} 30 30 {$DEFINE DEBUG_ACCESSIBILITY_MANAGER} 31 31 … … 35 35 vcldb, 36 36 VclSmp, 37 VAShared2006,38 rtl;37 rtl, 38 VAShared2006; 39 39 40 40 contains -
cprs/trunk/VA/VAUtils.pas
r829 r1679 20 20 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload; 21 21 22 function Show508Message(Const Msg: String): TShow508MessageResult; 22 23 function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone; 23 24 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload; … … 281 282 smiError: Caption := ' Error'; 282 283 smiQuestion: Caption := ' Inquiry'; 284 smiInfo: Caption := ' Information'; 283 285 end; 284 286 Caption := Application.Title + Caption; 285 287 Result := ShowMsg(Msg, Caption, Icon, Buttons); 286 288 end; 289 290 function Show508Message(Const Msg: String): TShow508MessageResult; 291 begin 292 Result := ShowMsg(msg); 293 end; 294 287 295 288 296 procedure FreeAndNilTStringsAndObjects(var Strings);
Note:
See TracChangeset
for help on using the changeset viewer.