mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
bug 76059, fixes A4 printing regression. Patch by atontti@cc.hut.fi.
r=kmcclusk@netscape.com sr=attinasi a=asa
This commit is contained in:
parent
fa0f56c133
commit
52688b6fde
@ -71,8 +71,8 @@ interface nsIPrintOptions : nsISupports
|
||||
const short kLetterPaperSize = 0;
|
||||
const short kLegalPaperSize = 1;
|
||||
const short kExecutivePaperSize = 2;
|
||||
const short kA3PaperSize = 3;
|
||||
const short kA4PaperSize = 4;
|
||||
const short kA4PaperSize = 3;
|
||||
const short kA3PaperSize = 4;
|
||||
|
||||
/**
|
||||
* Print Frame Constants
|
||||
|
@ -74,6 +74,7 @@ interface nsIPrintSettings : nsISupports
|
||||
const short kLegalPaperSize = 1;
|
||||
const short kExecutivePaperSize = 2;
|
||||
const short kA4PaperSize = 3;
|
||||
const short kA3PaperSize = 4;
|
||||
|
||||
/**
|
||||
* Print Frame Constants
|
||||
|
@ -37,6 +37,7 @@ PR_BEGIN_EXTERN_C
|
||||
#define NS_LEGAL_SIZE 1
|
||||
#define NS_EXECUTIVE_SIZE 2
|
||||
#define NS_A4_SIZE 3
|
||||
#define NS_A3_SIZE 4
|
||||
#endif
|
||||
|
||||
#ifndef PATH_MAX
|
||||
|
Loading…
Reference in New Issue
Block a user