issue-#193 typing error in System/Mod/Documents

Post Reply
Zinn
Posts: 476
Joined: Tue Mar 25, 2014 5:56 pm
Location: Frankfurt am Main
Contact:

issue-#193 typing error in System/Mod/Documents

Post by Zinn »

In the PROCEDURE (op: SetPageOp) Do; of System/Mod/Documents.odc the 6th line after BEGIN there should be delete "d."

wrong is
op.pw := pw; op.ph := d.ph; op.pl := pl; op.pt := pt; op.pr := pr; op.pb := pb;
correct is
op.pw := pw; op.ph := ph; op.pl := pl; op.pt := pt; op.pr := pr; op.pb := pb;

Reported by Ivan Denisov
User avatar
Josef Templ
Posts: 2047
Joined: Tue Sep 17, 2013 6:50 am

Re: issue-#193 typing error in System/Mod/Documents

Post by Josef Templ »

for the issue see: https://redmine.blackboxframework.org/issues/193.

@Ivan: Thanks for reporting this bug and for proposing the fix.

For the changes see https://redmine.blackboxframework.org/p ... 31db1326a6.

- Josef
Post Reply