Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Windows] Further cleanups #291

Merged
merged 2 commits into from
Aug 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions windows/QMK Toolbox.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio Version 16
VisualStudioVersion = 16.0.31424.327
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QMK Toolbox", "QMK Toolbox\QMK Toolbox.csproj", "{1F8BE719-CB0D-4A67-8422-B0C3A1B823F7}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion windows/QMK Toolbox/AboutBox.Designer.cs

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

2 changes: 1 addition & 1 deletion windows/QMK Toolbox/AboutBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public string AssemblyCompany

#endregion Assembly Attribute Accessors

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(linkLabel1.Text);
}
Expand Down
4 changes: 2 additions & 2 deletions windows/QMK Toolbox/Flashing.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Created by Jack Humbert on 9/1/17.
// Copyright © 2017 Jack Humbert. This code is licensed under MIT license (see LICENSE.md for details).

using QMK_Toolbox.Helpers;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using System.Threading;
using QMK_Toolbox.Helpers;
using System.Windows.Forms;

namespace QMK_Toolbox
{
Expand Down
Loading