Changeset 404 for Common/URegistry.pas
- Timestamp:
- Aug 13, 2012, 10:03:31 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/URegistry.pas
r400 r404 34 34 DefaultValue: Double): Double; 35 35 function DeleteKeyRecursive(const Key: string): Boolean; 36 function OpenKey(const Key: string; CanCreate: Boolean): Boolean; 36 37 end; 37 38 … … 97 98 end; 98 99 100 function TRegistryEx.OpenKey(const Key: string; CanCreate: Boolean): Boolean; 101 begin 102 {$IFDEF Linux} 103 CloseKey; 104 {$ENDIF} 105 Result := inherited OpenKey(Key, CanCreate); 106 end; 107 99 108 function TRegistryEx.ReadBoolWithDefault(const Name: string; 100 109 DefaultValue: Boolean): Boolean;
Note:
See TracChangeset
for help on using the changeset viewer.