From: Robert Colquhoun Date: Fri, 10 Sep 1999 08:48:24 +0000 (+0000) Subject: Fix the BoundingBox parameter - the upper x and y parameters were transposed. X-Git-Tag: HYLAFAX-4_1BETA3~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bea0751ccda260e178db8ea95f94b67ebe62dd6f;p=thirdparty%2FHylaFAX.git Fix the BoundingBox parameter - the upper x and y parameters were transposed. Thanks to John Interrante interran@crd.ge.com for this. --- diff --git a/util/TextFmt.c++ b/util/TextFmt.c++ index bb891ba4..36faf65a 100644 --- a/util/TextFmt.c++ +++ b/util/TextFmt.c++ @@ -514,7 +514,7 @@ TextFmt::emitPrologue(void) fprintf(output, "%%%%For: %s\n", cp ? cp : ""); fputs("%%Origin: 0 0\n", output); fprintf(output, "%%%%BoundingBox: 0 0 %.0f %.0f\n", - physPageHeight*72, physPageWidth*72); + physPageWidth*72, physPageHeight*72); fputs("%%Pages: (atend)\n", output); fprintf(output, "%%%%PageOrder: %s\n", reverse ? "Descend" : "Ascend");