Skip to content

Commit

Permalink
错误的文件名大小写真是不能忍了!
Browse files Browse the repository at this point in the history
  • Loading branch information
tctianchi committed Aug 27, 2017
1 parent 06dfc91 commit 7e0b2be
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.

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

4 changes: 2 additions & 2 deletions War3Trainer/frmMain.cs → War3Trainer/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

namespace War3Trainer
{
public partial class FrmMain : Form
public partial class MainForm : Form
{
private GameContext _currentGameContext;
private GameTrainer _mainTrainer;

public FrmMain()
public MainForm()
{
InitializeComponent();
SetRightGrid(RightFunction.Introduction);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion War3Trainer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());
Application.Run(new MainForm());
}
}
}
10 changes: 5 additions & 5 deletions War3Trainer/War3Trainer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,16 @@
<Compile Include="GameContext.cs" />
<Compile Include="ProcessMem.cs" />
<Compile Include="GameTrainer.cs" />
<Compile Include="FrmMain.cs">
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FrmMain.Designer.cs">
<DependentUpon>FrmMain.cs</DependentUpon>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="FrmMain.resx">
<DependentUpon>FrmMain.cs</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
Expand Down

0 comments on commit 7e0b2be

Please sign in to comment.