Skip to content

Commit 297b843

Browse files
committed
Rename modules to match to the feature
1 parent c9291cc commit 297b843

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

PrintCanceler/EdgeConfirmationDialogCanceler.cs renamed to PrintCanceler/EdgePrintDialogCanceler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This Source Code Form is subject to the terms of the Mozilla Public
1515

1616
namespace PrintCanceler
1717
{
18-
internal static class EdgeConfirmationDialogCanceler
18+
internal static class EdgePrintDialogCanceler
1919
{
2020
internal static void WatchDialog(RuntimeContext context)
2121
{

PrintCanceler/PrintCanceler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
</ItemGroup>
9292
<ItemGroup>
9393
<Compile Include="ConfigLoader.cs" />
94-
<Compile Include="EdgeConfirmationDialogCanceler.cs" />
94+
<Compile Include="EdgePrintDialogCanceler.cs" />
9595
<Compile Include="Logger.cs" />
9696
<Compile Include="ProcessCommunicator.cs" />
9797
<Compile Include="Program.cs" />

PrintCanceler/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static void Main()
4242
{
4343
var runtimeContext = new RuntimeContext(RunTimeMode.Server);
4444
Task serverTask = Task.Run(() => ProcessCommunicator.RunNamedPipedServer(runtimeContext));
45-
Task watchTask = Task.Run(() => EdgeConfirmationDialogCanceler.WatchDialog(runtimeContext));
45+
Task watchTask = Task.Run(() => EdgePrintDialogCanceler.WatchDialog(runtimeContext));
4646
Task.WhenAll(serverTask, watchTask).Wait();
4747
}
4848
finally

0 commit comments

Comments
 (0)