From 8e7f932410732a4f05d2e69e9ff66277f54d1bd7 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 16 Oct 2017 11:35:42 -0400 Subject: Convert CPVT_Color to CFX_Color This CL converts the use of CPVT_Color to CFX_Color and removes the CPVT_Color class. Change-Id: I86a2d06524cd8f0fbce2335f0185426cc41dbe84 Reviewed-on: https://pdfium-review.googlesource.com/16030 Reviewed-by: Ryan Harrison Commit-Queue: dsinclair --- fpdfsdk/pwl/cpwl_wnd.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpdfsdk/pwl/cpwl_wnd.cpp') diff --git a/fpdfsdk/pwl/cpwl_wnd.cpp b/fpdfsdk/pwl/cpwl_wnd.cpp index 124065cdf9..ec605a3844 100644 --- a/fpdfsdk/pwl/cpwl_wnd.cpp +++ b/fpdfsdk/pwl/cpwl_wnd.cpp @@ -716,9 +716,9 @@ IPVT_FontMap* CPWL_Wnd::GetFontMap() const { CFX_Color CPWL_Wnd::GetBorderLeftTopColor(BorderStyle nBorderStyle) const { switch (nBorderStyle) { case BorderStyle::BEVELED: - return CFX_Color(COLORTYPE_GRAY, 1); + return CFX_Color(CFX_Color::kGray, 1); case BorderStyle::INSET: - return CFX_Color(COLORTYPE_GRAY, 0.5f); + return CFX_Color(CFX_Color::kGray, 0.5f); default: return CFX_Color(); } @@ -729,7 +729,7 @@ CFX_Color CPWL_Wnd::GetBorderRightBottomColor(BorderStyle nBorderStyle) const { case BorderStyle::BEVELED: return GetBackgroundColor() / 2.0f; case BorderStyle::INSET: - return CFX_Color(COLORTYPE_GRAY, 0.75f); + return CFX_Color(CFX_Color::kGray, 0.75f); default: return CFX_Color(); } -- cgit v1.2.3