Sfoglia il codice sorgente

* Fix bug #8268

git-svn-id: trunk@6424 -
joost 18 anni fa
parent
commit
81b270cf9c
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 3 2
      fcl/db/db.pp

+ 3 - 2
fcl/db/db.pp

@@ -438,6 +438,7 @@ type
     constructor Create(AOwner: TComponent); override;
     property FixedChar : Boolean read FFixedChar write FFixedChar;
     property Transliterate: Boolean read FTransliterate write FTransliterate;
+    property Value: String read GetAsString write SetAsString;
   published
     property Size default 20;
   end;
@@ -517,7 +518,7 @@ type
   public
     constructor Create(AOwner: TComponent); override;
     Function CheckRange(AValue : largeint) : Boolean;
-    property Value: Longint read GetAsLongint write SetAsLongint;
+    property Value: Largeint read GetAsLargeint write SetAsLargeint;
   published
     property MaxValue: Largeint read FMaxValue write SetMaxValue default 0;
     property MinValue: Largeint read FMinValue write SetMinValue default 0;
@@ -712,7 +713,7 @@ type
   public
     constructor Create(AOwner: TComponent); override;
     Function CheckRange(AValue : Currency) : Boolean;
-    property Value: Longint read GetAsLongint write SetAsLongint;
+    property Value: Currency read GetAscurrency write SetAscurrency;
   published
     property Precision: Longint read FPrecision write FPrecision;
     property Currency: Boolean read FCurrency write FCurrency;