Skip to content

Commit

Permalink
Preliminary commit for v1.6.3
Browse files Browse the repository at this point in the history
Removed success dialog when settings are saved
Removed leftover logging in WndProc
  • Loading branch information
daviunic committed Mar 25, 2020
1 parent e51cfd1 commit f8ba446
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 86BoxManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
2 changes: 0 additions & 2 deletions 86BoxManager/dlgSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ private bool SaveSettings()
regkey.Close();

settingsChanged = CheckForChanges();

MessageBox.Show("Settings were successfully saved.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
Expand Down
4 changes: 0 additions & 4 deletions 86BoxManager/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,6 @@ protected override void WndProc(ref Message m)
}
else if (m.WParam.ToInt32() == 0) //VM was resumed
{
Console.WriteLine(m.Msg + ": VM was resumed");
foreach (ListViewItem lvi in lstVMs.Items)
{
VM vm = (VM)lvi.Tag;
Expand All @@ -1128,7 +1127,6 @@ protected override void WndProc(ref Message m)
{
if (m.WParam.ToInt32() == 1) //A dialog was opened
{
Console.WriteLine(m.Msg + ": a dialog was opened");
foreach (ListViewItem lvi in lstVMs.Items)
{
VM vm = (VM)lvi.Tag;
Expand All @@ -1153,7 +1151,6 @@ protected override void WndProc(ref Message m)
}
else if (m.WParam.ToInt32() == 0) //A dialog was closed
{
Console.WriteLine(m.Msg + ": a dialog was closed");
foreach (ListViewItem lvi in lstVMs.Items)
{
VM vm = (VM)lvi.Tag;
Expand Down Expand Up @@ -1184,7 +1181,6 @@ protected override void WndProc(ref Message m)

if (m.Msg == 0x8897) //Shutdown confirmed
{
Console.WriteLine(m.Msg + ": shutdown was confirmed");
foreach (ListViewItem lvi in lstVMs.Items)
{
VM vm = (VM)lvi.Tag;
Expand Down

0 comments on commit f8ba446

Please sign in to comment.