1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +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> #include <AK/FlyString.h>
#define ENUMERATE_COMMON_NAMES(V) \ #define ENUMERATE_COMMON_NAMES(A) \
V(AIS) \ A(AIS) \
V(ASCII85Decode) \ A(ASCII85Decode) \
V(ASCIIHexDecode) \ A(ASCIIHexDecode) \
V(BG) \ A(BG) \
V(BG2) \ A(BG2) \
V(BM) \ A(BM) \
V(BaseEncoding) \ A(BaseEncoding) \
V(BaseFont) \ A(BaseFont) \
V(BlackPoint) \ A(BlackPoint) \
V(C) \ A(C) \
V(CA) \ A(CA) \
V(CCITTFaxDecode) \ A(CCITTFaxDecode) \
V(CalRGB) \ A(CalRGB) \
V(ColorSpace) \ A(ColorSpace) \
V(Contents) \ A(Contents) \
V(Count) \ A(Count) \
V(CropBox) \ A(CropBox) \
V(Crypt) \ A(Crypt) \
V(D) \ A(D) \
V(DCTDecode) \ A(DCTDecode) \
V(Dest) \ A(Dest) \
V(Dests) \ A(Dests) \
V(DeviceCMYK) \ A(DeviceCMYK) \
V(DeviceGray) \ A(DeviceGray) \
V(DeviceRGB) \ A(DeviceRGB) \
V(Differences) \ A(Differences) \
V(E) \ A(E) \
V(Encoding) \ A(Encoding) \
V(ExtGState) \ A(ExtGState) \
V(F) \ A(F) \
V(FL) \ A(FL) \
V(Filter) \ A(Filter) \
V(First) \ A(First) \
V(FirstChar) \ A(FirstChar) \
V(Fit) \ A(Fit) \
V(FitB) \ A(FitB) \
V(FitBH) \ A(FitBH) \
V(FitBV) \ A(FitBV) \
V(FitH) \ A(FitH) \
V(FitR) \ A(FitR) \
V(FitV) \ A(FitV) \
V(FlateDecode) \ A(FlateDecode) \
V(Font) \ A(Font) \
V(FontDescriptor) \ A(FontDescriptor) \
V(FontFamily) \ A(FontFamily) \
V(FontFile1) \ A(FontFile1) \
V(FontFile2) \ A(FontFile2) \
V(FontFile3) \ A(FontFile3) \
V(Gamma) \ A(Gamma) \
V(H) \ A(H) \
V(HT) \ A(HT) \
V(HTO) \ A(HTO) \
V(JBIG2Decode) \ A(JBIG2Decode) \
V(JPXDecode) \ A(JPXDecode) \
V(Kids) \ A(Kids) \
V(L) \ A(L) \
V(LC) \ A(LC) \
V(LJ) \ A(LJ) \
V(LW) \ A(LW) \
V(LZWDecode) \ A(LZWDecode) \
V(Last) \ A(Last) \
V(LastChar) \ A(LastChar) \
V(Length) \ A(Length) \
V(Linearized) \ A(Linearized) \
V(ML) \ A(ML) \
V(Matrix) \ A(Matrix) \
V(MediaBox) \ A(MediaBox) \
V(N) \ A(N) \
V(Next) \ A(Next) \
V(O) \ A(O) \
V(OP) \ A(OP) \
V(OPM) \ A(OPM) \
V(Outlines) \ A(Outlines) \
V(P) \ A(P) \
V(Pages) \ A(Pages) \
V(Parent) \ A(Parent) \
V(Pattern) \ A(Pattern) \
V(Prev) \ A(Prev) \
V(RI) \ A(RI) \
V(Resources) \ A(Resources) \
V(Root) \ A(Root) \
V(Rotate) \ A(Rotate) \
V(RunLengthDecode) \ A(RunLengthDecode) \
V(SA) \ A(SA) \
V(SM) \ A(SM) \
V(SMask) \ A(SMask) \
V(Subtype) \ A(Subtype) \
V(T) \ A(T) \
V(TK) \ A(TK) \
V(TR) \ A(TR) \
V(TR2) \ A(TR2) \
V(Title) \ A(Title) \
V(ToUnicode) \ A(ToUnicode) \
V(Type) \ A(Type) \
V(UCR) \ A(UCR) \
V(UseBlackPTComp) \ A(UseBlackPTComp) \
V(UserUnit) \ A(UserUnit) \
V(WhitePoint) \ A(WhitePoint) \
V(Widths) \ A(Widths) \
V(XYZ) \ A(XYZ) \
V(ca) \ A(ca) \
V(op) A(op)
namespace PDF { namespace PDF {