map GtkComboBoxText to ComboBox
Change-Id: Ib73ff4ba0fc6c7c977bda8582079fdb0194e12a9
This commit is contained in:
parent
11de6f79c4
commit
dc4522d249
1 changed files with 6 additions and 0 deletions
|
@ -472,6 +472,12 @@ Window *VclBuilder::makeObject(Window *pParent, const rtl::OString &name, const
|
|||
pListBox->SetDropDownLineCount(16); //arbitrary
|
||||
pWindow = pListBox;
|
||||
}
|
||||
else if (name.equalsL(RTL_CONSTASCII_STRINGPARAM("GtkComboBoxText")))
|
||||
{
|
||||
extractModel(id, rMap);
|
||||
ComboBox* pComboBox = new ComboBox(pParent, WB_LEFT|WB_DROPDOWN|WB_VCENTER|WB_3DLOOK);
|
||||
pWindow = pComboBox;
|
||||
}
|
||||
else if (name.equalsL(RTL_CONSTASCII_STRINGPARAM("GtkTreeView")))
|
||||
{
|
||||
extractModel(id, rMap);
|
||||
|
|
Loading…
Reference in a new issue