Changeset 137 for trunk/Packages/PersistentData/Backend
- Timestamp:
- Sep 9, 2022, 1:16:58 AM (2 years ago)
- Location:
- trunk/Packages/PersistentData/Backend
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/PersistentData/Backend/UPDClientINI.pas
r87 r137 1 1 unit UPDClientINI; 2 3 {$mode delphi}4 2 5 3 interface … … 23 21 procedure Disconnect; override; 24 22 end; 23 25 24 26 25 implementation … … 49 48 begin 50 49 Disconnect; 51 inherited Destroy;50 inherited; 52 51 end; 53 52 -
trunk/Packages/PersistentData/Backend/UPDClientMemory.pas
r113 r137 1 1 unit UPDClientMemory; 2 3 {$mode Delphi}{$H+}4 2 5 3 interface … … 40 38 resourcestring 41 39 SObjectNotFound = 'Object with id %s not found'; 40 42 41 43 42 implementation … … 147 146 procedure TPDClientMemory.ListSave(AList: TListProxy); 148 147 begin 149 150 148 end; 151 149 152 150 procedure TPDClientMemory.TypeDefine(AType: TPDType); 153 151 begin 154 155 152 end; 156 153 157 154 procedure TPDClientMemory.TypeUndefine(AType: TPDType); 158 155 begin 159 160 156 end; 161 157 … … 167 163 procedure TPDClientMemory.Install; 168 164 begin 169 170 165 end; 171 166 172 167 procedure TPDClientMemory.Uninstall; 173 168 begin 174 175 169 end; 176 170 … … 185 179 begin 186 180 Objects.Free; 187 inherited Destroy;181 inherited; 188 182 end; 189 183 -
trunk/Packages/PersistentData/Backend/UPDClientMySQL.pas
r113 r137 1 1 unit UPDClientMySQL; 2 3 {$mode delphi}4 2 5 3 interface … … 46 44 end; 47 45 46 48 47 implementation 49 50 48 51 49 resourcestring 52 50 SMissingBaseType = 'Missing base typ for %s'; 53 51 SUndefinedType = 'Undefined type in %0:s.%1:s'; 54 55 52 56 53 { TPDClientMySQL } … … 262 259 begin 263 260 FreeAndNil(FDatabase); 264 inherited Destroy;261 inherited; 265 262 end; 266 263 -
trunk/Packages/PersistentData/Backend/UPDClientRegistry.pas
r87 r137 1 1 unit UPDClientRegistry; 2 3 {$mode delphi}4 2 5 3 interface … … 13 11 14 12 TPDClientRegistry = class(TPDClient) 13 public 15 14 Reg: TRegistry; 16 15 //procedure GetItemList(Condition: TCondition; ItemList: TItemList); override; … … 19 18 destructor Destroy; override; 20 19 end; 20 21 21 22 22 implementation … … 46 46 begin 47 47 Reg.Free; 48 inherited Destroy;48 inherited; 49 49 end; 50 50 -
trunk/Packages/PersistentData/Backend/UPDClientXMLRPC.pas
r87 r137 1 1 unit UPDClientXMLRPC; 2 3 {$mode delphi}4 2 5 3 interface … … 16 14 end; 17 15 16 18 17 implementation 19 20 18 21 19 { TPDClientXMLRPC }
Note:
See TracChangeset
for help on using the changeset viewer.