mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-13 06:27:11 +03:00
b62100fb07
No longer keeping System, System.Collections.Generic, System.Linq
23 lines
586 B
C#
23 lines
586 B
C#
namespace NAPS2.WinForms
|
|
{
|
|
public class StubDialogHelper : DialogHelper
|
|
{
|
|
public override bool PromptToSavePdfOrImage(string defaultPath, out string savePath)
|
|
{
|
|
savePath = null;
|
|
return false;
|
|
}
|
|
|
|
public override bool PromptToSavePdf(string defaultPath, out string savePath)
|
|
{
|
|
savePath = null;
|
|
return false;
|
|
}
|
|
|
|
public override bool PromptToSaveImage(string defaultPath, out string savePath)
|
|
{
|
|
savePath = null;
|
|
return false;
|
|
}
|
|
}
|
|
} |