Rename DeleteConfirmationDialog.cs into DangerousActionDialog.cs

This commit is contained in:
mk56-spn
2023-02-27 21:57:59 +01:00
parent 00a00ead22
commit 90227a6496
11 changed files with 12 additions and 12 deletions

View File

@ -12,14 +12,14 @@ namespace osu.Game.Overlays.Dialog
/// Differs from <see cref="ConfirmDialog"/> in that the confirmation button is a "dangerous" one
/// (requires the confirm button to be held).
/// </summary>
public abstract partial class DeleteConfirmationDialog : PopupDialog
public abstract partial class DangerousActionDialog : PopupDialog
{
/// <summary>
/// The action which performs the deletion.
/// </summary>
protected Action? DeleteAction { get; set; }
protected DeleteConfirmationDialog()
protected DangerousActionDialog()
{
HeaderText = DeleteConfirmationDialogStrings.HeaderText;