diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-02 10:38:55 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-02 18:43:08 +0000 |
commit | 951b1119d4c7487364bee4c5124b36453e00130d (patch) | |
tree | a128c8a30be2c1b74d3ac3f135dc0522b862cf83 /fpdfsdk/fsdk_common.h | |
parent | c065d883d995700b6cb5a00bd027232afded7ae5 (diff) | |
download | pdfium-951b1119d4c7487364bee4c5124b36453e00130d.tar.xz |
More define cleanup
Remove unused defines; Move to .cpp files where possible; Fixup values.
Change-Id: I88cd5deb04b14ab8e9f8097a695c3d0b52d64b4c
Reviewed-on: https://pdfium-review.googlesource.com/15130
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fsdk_common.h')
-rw-r--r-- | fpdfsdk/fsdk_common.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fpdfsdk/fsdk_common.h b/fpdfsdk/fsdk_common.h index d8030261c7..78ecd98b4a 100644 --- a/fpdfsdk/fsdk_common.h +++ b/fpdfsdk/fsdk_common.h @@ -10,7 +10,6 @@ // for all fields #define FIELDFLAG_READONLY 1 #define FIELDFLAG_REQUIRED 2 -#define FIELDFLAG_NOEXPORT 4 // for text fields #define FIELDFLAG_MULTILINE (1 << 12) #define FIELDFLAG_PASSWORD (1 << 13) @@ -20,14 +19,9 @@ #define FIELDFLAG_COMB (1 << 24) #define FIELDFLAG_RICHTEXT (1 << 25) // for button fileds -#define FIELDFLAG_NOTOGGLETOOFF (1 << 14) -#define FIELDFLAG_RADIO (1 << 15) -#define FIELDFLAG_PUSHBUTTON (1 << 16) #define FIELDFLAG_RADIOSINUNISON (1 << 27) // for choice fields -#define FIELDFLAG_COMBO (1 << 17) #define FIELDFLAG_EDIT (1 << 18) -#define FIELDFLAG_SORT (1 << 19) #define FIELDFLAG_MULTISELECT (1 << 21) #define FIELDFLAG_COMMITONSELCHANGE (1 << 26) |