瀏覽代碼

* Added EPropertyConvertError class

git-svn-id: trunk@9598 -
michael 18 年之前
父節點
當前提交
067d1ab582
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      rtl/objpas/typinfo.pp

+ 3 - 1
rtl/objpas/typinfo.pp

@@ -306,7 +306,9 @@ Type
   TSetPropValue   = Procedure (Instance: TObject; const PropName: string; const Value: Variant);
   TGetVariantProp = Function (Instance: TObject; PropInfo : PPropInfo): Variant;
   TSetVariantProp = Procedure (Instance: TObject; PropInfo : PPropInfo; const Value: Variant);
-
+  
+  EPropertyConvertError = class(Exception); // Not used (yet), but defined for compatibility.
+  
 Const
   OnGetPropValue   : TGetPropValue = Nil;
   OnSetPropValue   : TSetPropValue = Nil;