diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2022-03-20 08:55:14 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-29 02:52:57 +0200 |
commit | 15b7999313b83e4b0bf3b1aa6ab390106b274ad8 (patch) | |
tree | 8b99806e5eaa3d1101f3211440321cf55057e80c /Userland/Libraries/LibPDF/CommonNames.h | |
parent | 9a4a3318a9d47ff8d5b97daf31c77a28c96c01bc (diff) | |
download | serenity-15b7999313b83e4b0bf3b1aa6ab390106b274ad8.zip |
LibPDF: Change CommonNames' enumerator macro parameter name
Apparently "V" is a PDF property. Let's hope "A" isn't!
Diffstat (limited to 'Userland/Libraries/LibPDF/CommonNames.h')
-rw-r--r-- | Userland/Libraries/LibPDF/CommonNames.h | 206 |
1 files changed, 103 insertions, 103 deletions
diff --git a/Userland/Libraries/LibPDF/CommonNames.h b/Userland/Libraries/LibPDF/CommonNames.h index f9fd91ac1b..7b7f24a58a 100644 --- a/Userland/Libraries/LibPDF/CommonNames.h +++ b/Userland/Libraries/LibPDF/CommonNames.h @@ -8,109 +8,109 @@ #include <AK/FlyString.h> -#define ENUMERATE_COMMON_NAMES(V) \ - V(AIS) \ - V(ASCII85Decode) \ - V(ASCIIHexDecode) \ - V(BG) \ - V(BG2) \ - V(BM) \ - V(BaseEncoding) \ - V(BaseFont) \ - V(BlackPoint) \ - V(C) \ - V(CA) \ - V(CCITTFaxDecode) \ - V(CalRGB) \ - V(ColorSpace) \ - V(Contents) \ - V(Count) \ - V(CropBox) \ - V(Crypt) \ - V(D) \ - V(DCTDecode) \ - V(Dest) \ - V(Dests) \ - V(DeviceCMYK) \ - V(DeviceGray) \ - V(DeviceRGB) \ - V(Differences) \ - V(E) \ - V(Encoding) \ - V(ExtGState) \ - V(F) \ - V(FL) \ - V(Filter) \ - V(First) \ - V(FirstChar) \ - V(Fit) \ - V(FitB) \ - V(FitBH) \ - V(FitBV) \ - V(FitH) \ - V(FitR) \ - V(FitV) \ - V(FlateDecode) \ - V(Font) \ - V(FontDescriptor) \ - V(FontFamily) \ - V(FontFile1) \ - V(FontFile2) \ - V(FontFile3) \ - V(Gamma) \ - V(H) \ - V(HT) \ - V(HTO) \ - V(JBIG2Decode) \ - V(JPXDecode) \ - V(Kids) \ - V(L) \ - V(LC) \ - V(LJ) \ - V(LW) \ - V(LZWDecode) \ - V(Last) \ - V(LastChar) \ - V(Length) \ - V(Linearized) \ - V(ML) \ - V(Matrix) \ - V(MediaBox) \ - V(N) \ - V(Next) \ - V(O) \ - V(OP) \ - V(OPM) \ - V(Outlines) \ - V(P) \ - V(Pages) \ - V(Parent) \ - V(Pattern) \ - V(Prev) \ - V(RI) \ - V(Resources) \ - V(Root) \ - V(Rotate) \ - V(RunLengthDecode) \ - V(SA) \ - V(SM) \ - V(SMask) \ - V(Subtype) \ - V(T) \ - V(TK) \ - V(TR) \ - V(TR2) \ - V(Title) \ - V(ToUnicode) \ - V(Type) \ - V(UCR) \ - V(UseBlackPTComp) \ - V(UserUnit) \ - V(WhitePoint) \ - V(Widths) \ - V(XYZ) \ - V(ca) \ - V(op) +#define ENUMERATE_COMMON_NAMES(A) \ + A(AIS) \ + A(ASCII85Decode) \ + A(ASCIIHexDecode) \ + A(BG) \ + A(BG2) \ + A(BM) \ + A(BaseEncoding) \ + A(BaseFont) \ + A(BlackPoint) \ + A(C) \ + A(CA) \ + A(CCITTFaxDecode) \ + A(CalRGB) \ + A(ColorSpace) \ + A(Contents) \ + A(Count) \ + A(CropBox) \ + A(Crypt) \ + A(D) \ + A(DCTDecode) \ + A(Dest) \ + A(Dests) \ + A(DeviceCMYK) \ + A(DeviceGray) \ + A(DeviceRGB) \ + A(Differences) \ + A(E) \ + A(Encoding) \ + A(ExtGState) \ + A(F) \ + A(FL) \ + A(Filter) \ + A(First) \ + A(FirstChar) \ + A(Fit) \ + A(FitB) \ + A(FitBH) \ + A(FitBV) \ + A(FitH) \ + A(FitR) \ + A(FitV) \ + A(FlateDecode) \ + A(Font) \ + A(FontDescriptor) \ + A(FontFamily) \ + A(FontFile1) \ + A(FontFile2) \ + A(FontFile3) \ + A(Gamma) \ + A(H) \ + A(HT) \ + A(HTO) \ + A(JBIG2Decode) \ + A(JPXDecode) \ + A(Kids) \ + A(L) \ + A(LC) \ + A(LJ) \ + A(LW) \ + A(LZWDecode) \ + A(Last) \ + A(LastChar) \ + A(Length) \ + A(Linearized) \ + A(ML) \ + A(Matrix) \ + A(MediaBox) \ + A(N) \ + A(Next) \ + A(O) \ + A(OP) \ + A(OPM) \ + A(Outlines) \ + A(P) \ + A(Pages) \ + A(Parent) \ + A(Pattern) \ + A(Prev) \ + A(RI) \ + A(Resources) \ + A(Root) \ + A(Rotate) \ + A(RunLengthDecode) \ + A(SA) \ + A(SM) \ + A(SMask) \ + A(Subtype) \ + A(T) \ + A(TK) \ + A(TR) \ + A(TR2) \ + A(Title) \ + A(ToUnicode) \ + A(Type) \ + A(UCR) \ + A(UseBlackPTComp) \ + A(UserUnit) \ + A(WhitePoint) \ + A(Widths) \ + A(XYZ) \ + A(ca) \ + A(op) namespace PDF { |