Skip to content
This repository has been archived by the owner on Dec 26, 2020. It is now read-only.

Commit

Permalink
Renamed main form, changed custom filters form
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed Jan 7, 2017
1 parent 5e9e7c5 commit 19bac92
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 11 deletions.
20 changes: 15 additions & 5 deletions AB+ Log Viewer/AB+ Log Viewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,26 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<Compile Include="Config.cs" />
<Compile Include="frmCustomFilters.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="frmCustomFilters.Designer.cs">
<DependentUpon>frmCustomFilters.cs</DependentUpon>
</Compile>
<Compile Include="frmMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmMain.Designer.cs">
<DependentUpon>frmMain.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="frmCustomFilters.resx">
<DependentUpon>frmCustomFilters.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand Down
2 changes: 1 addition & 1 deletion AB+ Log Viewer/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 frmMain());
}
}
}
12 changes: 10 additions & 2 deletions AB+ Log Viewer/frmCustomFilters.Designer.cs

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

14 changes: 13 additions & 1 deletion AB+ Log Viewer/frmMain.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 AB+ Log Viewer/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

namespace AB__Log_Viewer
{
public partial class Form1 : Form
public partial class frmMain : Form
{
public Form1()
public frmMain()
{
InitializeComponent();
}
Expand Down

0 comments on commit 19bac92

Please sign in to comment.