diff options
Diffstat (limited to 'xfa/fwl/basewidget/fwl_comboboximp.cpp')
-rw-r--r-- | xfa/fwl/basewidget/fwl_comboboximp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fwl/basewidget/fwl_comboboximp.cpp b/xfa/fwl/basewidget/fwl_comboboximp.cpp index 7368f7bbbd..81c2fa75d3 100644 --- a/xfa/fwl/basewidget/fwl_comboboximp.cpp +++ b/xfa/fwl/basewidget/fwl_comboboximp.cpp @@ -490,13 +490,14 @@ FWL_Error CFWL_ComboBoxImp::GetClassName(CFX_WideString& wsClass) const { return FWL_Error::Succeeded; } -uint32_t CFWL_ComboBoxImp::GetClassID() const { - return FWL_CLASSHASH_ComboBox; +FWL_Type CFWL_ComboBoxImp::GetClassID() const { + return FWL_Type::ComboBox; } FWL_Error CFWL_ComboBoxImp::Initialize() { if (m_pWidgetMgr->IsFormDisabled()) return DisForm_Initialize(); + if (CFWL_WidgetImp::Initialize() != FWL_Error::Succeeded) return FWL_Error::Indefinite; |