Page 1 of 1

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

Posted: Sun Dec 02, 2018 11:01 am
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

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

Posted: Mon Dec 03, 2018 6:18 pm
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