diff --git a/apps/adl_workbench/src/gui/archetype_editor/c_attribute_ui_node.e b/apps/adl_workbench/src/gui/archetype_editor/c_attribute_ui_node.e index f3d34c9ff..e857d5d7c 100755 --- a/apps/adl_workbench/src/gui/archetype_editor/c_attribute_ui_node.e +++ b/apps/adl_workbench/src/gui/archetype_editor/c_attribute_ui_node.e @@ -523,6 +523,7 @@ feature {ANY_UI_NODE} -- Implementation att_aom_profile.has_aom_primitive_type_mapping_for_rm_type (rm_type_name) then aom_type := att_aom_profile.aom_primitive_type_mapping_for_rm_type (rm_type_name) + -- else use standard RM prim type => AOM type mapping elseif attached c_primitive_subtypes.item (rm_type_name.as_upper) as att_aom_type then aom_type := att_aom_type diff --git a/apps/adl_workbench/src/gui/archetype_tool/gui_instance_control.e b/apps/adl_workbench/src/gui/archetype_tool/gui_instance_control.e index c10c490d1..a6921ecea 100644 --- a/apps/adl_workbench/src/gui/archetype_tool/gui_instance_control.e +++ b/apps/adl_workbench/src/gui/archetype_tool/gui_instance_control.e @@ -180,7 +180,7 @@ feature {NONE} -- Implementation path := save_dialog.file_name.as_string_8 if not path.is_empty and then attached {ARCH_LIB_AUTHORED_ARCHETYPE} safe_source as arch_src then - arch_src.save_instance_to_file (path, a_text) + arch_src.save_text_to_file (path, a_text) gui_agents.call_console_tool_append_agent (get_msg_line ({GENERAL_MESSAGES_IDS}.ec_file_saved_as_in_format, <>)) end end diff --git a/components/archetype_repository/src/library/arch_lib_authored_archetype.e b/components/archetype_repository/src/library/arch_lib_authored_archetype.e index 6a7db042a..1bc609deb 100755 --- a/components/archetype_repository/src/library/arch_lib_authored_archetype.e +++ b/components/archetype_repository/src/library/arch_lib_authored_archetype.e @@ -352,7 +352,7 @@ feature -- File Access file_mgr.save_text_to_differential_file (a_text) end - save_instance_to_file (a_full_path, a_text: STRING) + save_text_to_file (a_full_path, a_text: STRING) -- Save instance to a file require path_valid: not a_full_path.is_empty