| Index: xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h
|
| diff --git a/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h b/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h
|
| index 0e538f32d682625e689a03ba735cc40927c09672..490202dc9a09058eb8bafe4e6512136681a2495a 100644
|
| --- a/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h
|
| +++ b/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h
|
| @@ -25,8 +25,8 @@ public:
|
| virtual FWL_ERR GetWidgetRect(CFX_RectF &rect, FX_BOOL bAutoSize = FALSE);
|
| virtual FWL_ERR Update();
|
| virtual FWL_ERR DrawWidget(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix = NULL);
|
| - virtual FX_INT32 GetCheckState();
|
| - virtual FWL_ERR SetCheckState(FX_INT32 iCheck);
|
| + virtual int32_t GetCheckState();
|
| + virtual FWL_ERR SetCheckState(int32_t iCheck);
|
| protected:
|
| void Layout();
|
| FX_DWORD GetPartStates();
|
| @@ -37,7 +37,7 @@ protected:
|
| CFX_RectF m_rtCaption;
|
| CFX_RectF m_rtFocus;
|
| FX_DWORD m_dwTTOStyles;
|
| - FX_INT32 m_iTTOAlign;
|
| + int32_t m_iTTOAlign;
|
| FX_BOOL m_bBtnDown;
|
| friend class CFWL_CheckBoxImpDelegate;
|
| };
|
| @@ -45,7 +45,7 @@ class CFWL_CheckBoxImpDelegate : public CFWL_WidgetImpDelegate
|
| {
|
| public:
|
| CFWL_CheckBoxImpDelegate(CFWL_CheckBoxImp *pOwner);
|
| - virtual FX_INT32 OnProcessMessage(CFWL_Message *pMessage);
|
| + virtual int32_t OnProcessMessage(CFWL_Message *pMessage);
|
| virtual FWL_ERR OnDrawWidget(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix = NULL);
|
| protected:
|
| void OnActivate(CFWL_Message *pMsg);
|
|
|