class EL_APPLY_CHANGES_CONFIRMATION_DIALOG

(source code)

Client examples: COMPILE_CLASSES

description

Apply changes confirmation dialog

note
	description: "Apply changes confirmation dialog"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2022-11-15 19:56:05 GMT (Tuesday 15th November 2022)"
	revision: "6"

class
	EL_APPLY_CHANGES_CONFIRMATION_DIALOG

inherit
	EL_CONFIRMATION_DIALOG
		redefine
			ev_ok, ev_cancel
		end

create
	default_create, make_with_text, make_with_text_and_actions

feature -- Access

	ev_ok: STRING = "Apply"

	ev_cancel: STRING = "Discard"

end