Skip to content

Commit

Permalink
*finished renaming class "Matt" -> "MattMain"
Browse files Browse the repository at this point in the history
  • Loading branch information
bahstrike committed Sep 20, 2021
1 parent eb47e0f commit 4f55de3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MattMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions MattMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace Matt
{
public partial class Matt : Form
public partial class MattMain : Form
{
public enum Format
{
Expand Down Expand Up @@ -90,7 +90,7 @@ private string INIFile
}
}

public Matt()
public MattMain()
{
InitializeComponent();

Expand Down
2 changes: 1 addition & 1 deletion PictureBoxMaterial.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class PictureBoxMaterial : PictureBox
{
protected override void OnPaint(PaintEventArgs paintEventArgs)
{
Matt.FillRectEmpty(paintEventArgs.Graphics, ClientRectangle);
MattMain.FillRectEmpty(paintEventArgs.Graphics, ClientRectangle);

if (Image == null)
return;
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Matt());
Application.Run(new MattMain());
}
}
}

0 comments on commit 4f55de3

Please sign in to comment.