Skip to content

Commit

Permalink
Changed Name
Browse files Browse the repository at this point in the history
  • Loading branch information
orangelight committed Aug 5, 2016
1 parent 44a2041 commit c2f2612
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 34 deletions.
10 changes: 5 additions & 5 deletions Dslog/Dslog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,19 @@
</Compile>
<Compile Include="BinaryReader2.cs" />
<Compile Include="DSLOGReader.cs" />
<Compile Include="Form1.cs">
<Compile Include="FormMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="FormMain.Designer.cs">
<DependentUpon>FormMain.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="About.resx">
<DependentUpon>About.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="FormMain.resx">
<DependentUpon>FormMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand Down
52 changes: 26 additions & 26 deletions Dslog/Form1.Designer.cs → Dslog/FormMain.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 Dslog/Form1.cs → Dslog/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

namespace Dslog
{
public partial class Form1 : Form
public partial class FormMain : Form
{
public Form1()
public FormMain()
{
InitializeComponent();
addSeries();
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Dslog/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 FormMain());
}
}
}

0 comments on commit c2f2612

Please sign in to comment.