From b8a51e2c5b476d0db5b75799911f0c8626012e9c Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 17 Nov 2015 15:15:41 -0800 Subject: Make FWL_ classes more consistently named. Rename IFWL_Target::m_pData to m_pImpl since it points to CFWL_*Imp classes. Rename CFWL_Widget:m_pImp to m_pIface since it points to IFWL_* interface classes. Here, the concrete classes have pointers to the corresponding interfaces, rather than inheriting from them, and this is likely due to someone not understanding virtual inheritance (since this code has the diamond problem in spades). Rename CFWL_Target to CWFL_TargetImp since it is the root of the CFWL_*Imp hierarchy, and is pointed to by the m_pImpl slot. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1446393002 . --- xfa/include/fwl/lightwidget/barcode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/include/fwl/lightwidget/barcode.h') diff --git a/xfa/include/fwl/lightwidget/barcode.h b/xfa/include/fwl/lightwidget/barcode.h index ab1719373a..447a403f2e 100644 --- a/xfa/include/fwl/lightwidget/barcode.h +++ b/xfa/include/fwl/lightwidget/barcode.h @@ -35,7 +35,7 @@ class CFWL_Barcode : public CFWL_Edit { void SetDataLength(int32_t dataLength) { m_barcodeData.m_dwAttributeMask |= FWL_BCDATTRIBUTE_DATALENGTH; m_barcodeData.m_nDataLength = dataLength; - ((IFWL_Barcode*)m_pImp)->SetLimit(dataLength); + ((IFWL_Barcode*)m_pIface)->SetLimit(dataLength); } void SetCalChecksum(int32_t calChecksum) { m_barcodeData.m_dwAttributeMask |= FWL_BCDATTRIBUTE_CALCHECKSUM; -- cgit v1.2.3