浏览代码

* Made it compile with 1.0.10. Solution is not very nice.

daniel 22 年之前
父节点
当前提交
85632fccc0
共有 1 个文件被更改,包括 13 次插入1 次删除
  1. 13 1
      fcl/image/pscanvas.pp

+ 13 - 1
fcl/image/pscanvas.pp

@@ -214,7 +214,19 @@ implementation
 Resourcestring
   SErrNoStreamAssigned = 'Invalid operation: No stream assigned';
   SErrDocumentAlreadyStarted = 'Cannot start document twice.';
-  
+
+{$ifdef ver1_0}
+const   lineending=#10;
+
+procedure freeandnil(var o:Tobject);
+
+begin
+  o.destroy;
+  o:=nil;
+end;
+
+{$endif}
+
 { TPostScriptCanvas ----------------------------------------------------------}
 
 Procedure TPostScriptCanvas.WritePS(const Cmd : String);