Skip to content

Commit

Permalink
Fixed some naming violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Inzaniity committed May 28, 2020
1 parent 71fec8b commit 0b95f89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Songify Slim/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ private void MetroWindowStateChanged(object sender, EventArgs e)
MinimizeToSysTray();
}

private void mi_Blacklist_Click(object sender, RoutedEventArgs e)
private void Mi_Blacklist_Click(object sender, RoutedEventArgs e)
{
// Opens the Blacklist Window
if (!IsWindowOpen<Window_Blacklist>())
Expand All @@ -684,7 +684,7 @@ private void mi_Blacklist_Click(object sender, RoutedEventArgs e)
}
}

private void mi_Queue_Click(object sender, RoutedEventArgs e)
private void Mi_Queue_Click(object sender, RoutedEventArgs e)
{
// Opens the Queue Window
System.Windows.Controls.MenuItem item = (System.Windows.Controls.MenuItem)sender;
Expand All @@ -703,7 +703,7 @@ private void mi_Queue_Click(object sender, RoutedEventArgs e)
}
}

private async void mi_QueueClear_Click(object sender, RoutedEventArgs e)
private async void Mi_QueueClear_Click(object sender, RoutedEventArgs e)
{
// After user confirmation sends a command to the webserver which clears the queue
MessageDialogResult msgResult = await this.ShowMessageAsync("Notification", "Do you really want to clear the queue?", MessageDialogStyle.AffirmativeAndNegative, new MetroDialogSettings { AffirmativeButtonText = "Yes", NegativeButtonText = "No" });
Expand Down

0 comments on commit 0b95f89

Please sign in to comment.