From c31eadd7241bee3cff2581d4bc32ffe676a9ed7a Mon Sep 17 00:00:00 2001 From: kevin Date: Wed, 12 Mar 2025 13:23:53 -0400 Subject: [PATCH] cawUi.cpp : _get_widget_type_id() is now able to directly use ui_var->ui_cfg. --- src/caw/cawUi.cpp | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/src/caw/cawUi.cpp b/src/caw/cawUi.cpp index c5b3a3d..1d6c82b 100644 --- a/src/caw/cawUi.cpp +++ b/src/caw/cawUi.cpp @@ -173,29 +173,12 @@ namespace caw { case flow::kStringTFl: widget_type_id_ref = kStringWidgetId; break; } - // get the proc desc 'vars' dict. - if((rc = ui_var->ui_proc->proc->class_desc->cfg->getv_opt("vars",cfg)) != kOkRC ) + if( ui_var->ui_cfg == nullptr ) { - rc = cwLogError(rc,"Error parsing proc desc. 'vars'."); + rc = cwLogError(rc,"Error locating 'var' '%s' on proc desc.",cwStringNullGuard(ui_var->label)); goto errLabel; } - - // 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 ) + else { // get the type of this 'ui' widget if((rc = ui_cfg->getv("type",widget_type_label)) != kOkRC )