|
From: <dav...@us...> - 2009-09-04 01:43:10
|
Revision: 871
http://instantobjects.svn.sourceforge.net/instantobjects/revision/?rev=871&view=rev
Author: davidvtaylor
Date: 2009-09-04 01:42:48 +0000 (Fri, 04 Sep 2009)
Log Message:
-----------
* Changed the new Bytes property of TInstantBlob from published to public for D5 compatibility
Modified Paths:
--------------
trunk/Source/Core/InstantPersistence.pas
Modified: trunk/Source/Core/InstantPersistence.pas
===================================================================
--- trunk/Source/Core/InstantPersistence.pas 2009-09-03 09:13:11 UTC (rev 870)
+++ trunk/Source/Core/InstantPersistence.pas 2009-09-04 01:42:48 UTC (rev 871)
@@ -472,9 +472,9 @@
procedure Reset; override;
procedure SaveDataToStream(AStream: TStream);
function WriteBuffer(const Buffer; Position, Count: Integer): Integer;
+ property Bytes: TInstantBytes read GetBytes write SetBytes;
property Size: Integer read GetSize;
published
- property Bytes: TInstantBytes read GetBytes write SetBytes;
property Value: string read GetValue write SetValue;
end;
|