Переименование

This commit is contained in:
2025-03-20 16:36:32 +03:00
parent 23e52788a0
commit e93a028bc4
7 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ namespace mROA.CodegenTools
public void Setup(object value)
{
if (!(value is string) && !(value is ITemplatePart) )
if (!(value is string) && !(value is ITemplateSection) )
return;
if (IsInserted(value))
return;
@@ -61,7 +61,7 @@ namespace mROA.CodegenTools
case string s:
return s;
default:
return ((ITemplatePart)_insertedValue).Bake();
return ((ITemplateSection)_insertedValue).Bake();
}
}
}