Skip to content

Commit

Permalink
rename TaskBarProcess to SystemTrayProcess
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminiserman committed Jan 7, 2022
1 parent 84ef8a6 commit 76ae752
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ static void Main()
{
ApplicationConfiguration.Initialize();

TaskbarProcess taskBarProcess = new();
SystemTrayProcess taskBarProcess = new();

AppDomain.CurrentDomain.ProcessExit += new EventHandler(taskBarProcess.Exit);

Expand Down
4 changes: 2 additions & 2 deletions TaskbarProcess.cs → SystemTrayProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Windows.Forms;
using Timer = System.Timers.Timer;

internal class TaskbarProcess : ApplicationContext
internal class SystemTrayProcess : ApplicationContext
{
private static readonly Icon _normal = new("iksokodo.ico"), _suspended = new("iksokodo_suspend.ico");

Expand All @@ -16,7 +16,7 @@ internal class TaskbarProcess : ApplicationContext

private const string PAUSE_MESSAGE = "Pause", RESUME_MESSAGE = "Resume", EXIT_MESSAGE = "Exit";

internal TaskbarProcess()
internal SystemTrayProcess()
{
ContextMenuStrip menuStrip = new();

Expand Down

0 comments on commit 76ae752

Please sign in to comment.