indexing description: "Restores the user icon to the default image" author: "Dennis Rietmann " date: "$Date$" revision: "$Revision$" class O_USER_RESET_ICON_MESSAGE inherit O_USER_SESSION_MESSAGE rename make as make_session redefine make_from_generic, arguments, type end create make create {O_MESSAGE_FACTORY} make_from_generic feature {NONE} -- Initialization make (a_session: like session) is -- Create. require a_session_ok: a_session /= Void and then not a_session.is_empty do make_session (a_session) end make_from_generic (a_msg: O_GENERIC_MESSAGE) is -- Create from a generic message. do Precursor (a_msg) end feature -- Access type: STRING is -- Type of the message. once Result := user_reset_icon_type end icon: STRING is -- Default user icon (must be empty string and not nopic.png!) once Result := "" end arguments: HASH_TABLE [STRING, STRING] is -- Named arguments. do Result := Precursor end end