summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-12-15 13:50:59 -0800
committerCommit bot <commit-bot@chromium.org>2016-12-15 13:50:59 -0800
commitb04b96b1ea3ef88385bbf736b2bccab7ed12c486 (patch)
tree895364047fe5f9c7af06f745f1f5ef322d04fefd
parent68034894d246f1352e7ff221f52c469e008fbfe8 (diff)
downloadpdfium-b04b96b1ea3ef88385bbf736b2bccab7ed12c486.tar.xz
Move window type mask up with masked flags
Move code to make clear what is being masked. Review-Url: https://codereview.chromium.org/2573163002
-rw-r--r--xfa/fwl/fwl_widgetdef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/fwl_widgetdef.h b/xfa/fwl/fwl_widgetdef.h
index 04e1ec03ff..a85ba1562a 100644
--- a/xfa/fwl/fwl_widgetdef.h
+++ b/xfa/fwl/fwl_widgetdef.h
@@ -10,11 +10,11 @@
#define FWL_WGTSTYLE_OverLapper 0
#define FWL_WGTSTYLE_Popup (1L << 0)
#define FWL_WGTSTYLE_Child (2L << 0)
+#define FWL_WGTSTYLE_WindowTypeMask (3L << 0)
#define FWL_WGTSTYLE_Border (1L << 2)
#define FWL_WGTSTYLE_VScroll (1L << 11)
#define FWL_WGTSTYLE_Group (1L << 22)
#define FWL_WGTSTYLE_NoBackground (1L << 28)
-#define FWL_WGTSTYLE_WindowTypeMask (3L << 0)
#define FWL_WGTSTATE_Disabled (1L << 2)
#define FWL_WGTSTATE_Focused (1L << 4)