Skip to content

Commit

Permalink
minor name adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
erfg12 committed Jun 30, 2021
1 parent 6eb1a78 commit 774c5d5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.

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

4 changes: 2 additions & 2 deletions workController/Form1.cs → WorkController/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace workController
{
public partial class Form1 : Form
public partial class MainForm : Form
{
public Form1()
public MainForm()
{
InitializeComponent();
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion workController.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2037
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "workController", "workController\workController.csproj", "{9C66C432-F3D8-44E1-9AED-C840AE9BCCA5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkController", "WorkController\WorkController.csproj", "{9C66C432-F3D8-44E1-9AED-C840AE9BCCA5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion workController/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 Form1());
Application.Run(new MainForm());
}
}
}
10 changes: 5 additions & 5 deletions workController/workController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
<Compile Include="blocktimes.Designer.cs">
<DependentUpon>blocktimes.cs</DependentUpon>
</Compile>
<Compile Include="Form1.cs">
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="general.cs">
<SubType>Form</SubType>
Expand All @@ -91,8 +91,8 @@
<EmbeddedResource Include="blocktimes.resx">
<DependentUpon>blocktimes.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="general.resx">
<DependentUpon>general.cs</DependentUpon>
Expand Down

0 comments on commit 774c5d5

Please sign in to comment.