From 0813abe0bb1cd8c52e5693b2a9007c46ddfa6e66 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 18 Dec 2015 15:29:43 +0100 Subject: [PATCH] Fixed ROC CMS library compilation. --- src/service/content/cms_partial_content.e | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/service/content/cms_partial_content.e b/src/service/content/cms_partial_content.e index 8b114b0..4c37ea1 100644 --- a/src/service/content/cms_partial_content.e +++ b/src/service/content/cms_partial_content.e @@ -26,6 +26,9 @@ feature {NONE} -- Initialization feature -- Access + identifier: detachable READABLE_STRING_32 + -- + title: detachable READABLE_STRING_32 -- Title associated with Current content. @@ -42,6 +45,15 @@ feature -- Access feature -- Element change + set_identifier (a_identifier: detachable READABLE_STRING_GENERAL) + do + if a_identifier = Void then + identifier := Void + else + create {IMMUTABLE_STRING_32} identifier.make_from_string_general (a_identifier) + end + end + set_title (a_title: detachable READABLE_STRING_GENERAL) do if a_title = Void then