From 0b95f89c16446b483038df2084cce54b0c5bf94f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bl=C3=B6macher?= Date: Thu, 28 May 2020 13:51:19 +0200 Subject: [PATCH] Fixed some naming violations --- Songify Slim/MainWindow.xaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Songify Slim/MainWindow.xaml.cs b/Songify Slim/MainWindow.xaml.cs index 73a5a032..ca3f21ec 100644 --- a/Songify Slim/MainWindow.xaml.cs +++ b/Songify Slim/MainWindow.xaml.cs @@ -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()) @@ -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; @@ -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" });