cawUi.cpp : _get_widget_type_id() is now able to directly use ui_var->ui_cfg.
This commit is contained in:
parent
b3945e168c
commit
c31eadd724
@ -173,29 +173,12 @@ namespace caw {
|
|||||||
case flow::kStringTFl: widget_type_id_ref = kStringWidgetId; break;
|
case flow::kStringTFl: widget_type_id_ref = kStringWidgetId; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get the proc desc 'vars' dict.
|
if( ui_var->ui_cfg == nullptr )
|
||||||
if((rc = ui_var->ui_proc->proc->class_desc->cfg->getv_opt("vars",cfg)) != kOkRC )
|
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Error parsing proc desc. 'vars'.");
|
rc = cwLogError(rc,"Error locating 'var' '%s' on proc desc.",cwStringNullGuard(ui_var->label));
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
// locate this 'var' in the var-list
|
|
||||||
if((cfg = cfg->find(ui_var->label)) == nullptr )
|
|
||||||
{
|
|
||||||
rc = cwLogError(rc,"Error locating 'var' '%s' on proc desc.",ui_var->label);
|
|
||||||
goto errLabel;
|
|
||||||
}
|
|
||||||
|
|
||||||
// get the 'ui' record for this var
|
|
||||||
if((rc = cfg->getv_opt("ui",ui_cfg)) != kOkRC )
|
|
||||||
{
|
|
||||||
rc = cwLogError(rc,"Error parsing variable 'ui' cfg.");
|
|
||||||
goto errLabel;
|
|
||||||
}
|
|
||||||
|
|
||||||
// if a 'ui' record was found
|
|
||||||
if( ui_cfg != nullptr )
|
|
||||||
{
|
{
|
||||||
// get the type of this 'ui' widget
|
// get the type of this 'ui' widget
|
||||||
if((rc = ui_cfg->getv("type",widget_type_label)) != kOkRC )
|
if((rc = ui_cfg->getv("type",widget_type_label)) != kOkRC )
|
||||||
|
Loading…
Reference in New Issue
Block a user