1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:17:36 +00:00

LibPDF: Change CommonNames' enumerator macro parameter name

Apparently "V" is a PDF property. Let's hope "A" isn't!
This commit is contained in:
Matthew Olsson 2022-03-20 08:55:14 -07:00 committed by Andreas Kling
parent 9a4a3318a9
commit 15b7999313

View file

@ -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 {