diff --git a/PdfScribeCore/ErrorDialogPresenter.cs b/PdfScribeCore/ErrorDialogPresenter.cs deleted file mode 100644 index a8f1b9e..0000000 --- a/PdfScribeCore/ErrorDialogPresenter.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Windows; - -using APICodePack = Microsoft.WindowsAPICodePack.Dialogs; - -namespace PdfScribeCore -{ - public class ErrorDialogPresenter : TaskDialogPresenter - { - protected override APICodePack.TaskDialogStandardIcon DefaultTaskIcon - { - get { return APICodePack.TaskDialogStandardIcon.Error; } - } - - public ErrorDialogPresenter() - : base() - { - - } - - /// - /// Ctor that shows the - /// task dialog immediately - /// - /// Text that goes in the window caption - /// Instructional text (Appears next to the icon) - /// Smaller message detail text at bottom - public ErrorDialogPresenter(String captionText, - String instructionText, - String messageText) : - base(captionText, instructionText, messageText) - { - } - - - - } -}