Tags 663674 +patch
Thanks

Patch is attatched just add it to the quilt series.
Description: Add typecast to avoid "call by var has to match exactly error"
 The typecast added is sane as "self" in the inherited constructor will be a 
 reference to the correct type.

Author: Peter Michael Green <plugw...@p10link.net>
Bug-Debian: http://bugs.debian.org/663674

--- ztex-bmp-20110912.orig/src/bmp.pas
+++ ztex-bmp-20110912/src/bmp.pas
@@ -306,7 +306,7 @@ constructor CMacroBuf.insert(var mb:CMac
 var tmp : CMacroBuf;
 begin
 tmp:=mb;
-inherited create(mb, macrobuf_size);
+inherited create(CTextBuf(mb), macrobuf_size);
 last:=tmp.last;
 tmp.last:=self;
 mac:=tmp.mac;

Reply via email to