From c822edad28c91547738356a0228f4647fa30cda6 Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 23 Mar 2023 10:16:54 +0100 Subject: [PATCH] fix event enum --- uwp/cs/06_GroupChat/Controls/EventDisplay.xaml.cs | 6 +++--- uwp/cs/07_AdvancedChat/Controls/EventDisplay.xaml.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/uwp/cs/06_GroupChat/Controls/EventDisplay.xaml.cs b/uwp/cs/06_GroupChat/Controls/EventDisplay.xaml.cs index e9f919f..f88c429 100644 --- a/uwp/cs/06_GroupChat/Controls/EventDisplay.xaml.cs +++ b/uwp/cs/06_GroupChat/Controls/EventDisplay.xaml.cs @@ -44,11 +44,11 @@ namespace _06_GroupChat.Controls EventText.Text = $"The conference {eventLog.Subject} is terminated"; break; - case EventLogType.ConferenceCallStart: + case EventLogType.ConferenceCallStarted: EventText.Text = "Call started"; break; - case EventLogType.ConferenceCallEnd: + case EventLogType.ConferenceCallEnded: EventText.Text = "Call ended"; break; @@ -76,4 +76,4 @@ namespace _06_GroupChat.Controls } } } -} \ No newline at end of file +} diff --git a/uwp/cs/07_AdvancedChat/Controls/EventDisplay.xaml.cs b/uwp/cs/07_AdvancedChat/Controls/EventDisplay.xaml.cs index 6b70011..fbefa5c 100644 --- a/uwp/cs/07_AdvancedChat/Controls/EventDisplay.xaml.cs +++ b/uwp/cs/07_AdvancedChat/Controls/EventDisplay.xaml.cs @@ -37,11 +37,11 @@ namespace _07_AdvancedChat.Controls EventText.Text = $"The conference {eventLog.Subject} is terminated"; break; - case EventLogType.ConferenceCallStart: + case EventLogType.ConferenceCallStarted: EventText.Text = "Call start"; break; - case EventLogType.ConferenceCallEnd: + case EventLogType.ConferenceCallEnded: EventText.Text = "Call end"; break; @@ -80,4 +80,4 @@ namespace _07_AdvancedChat.Controls } } } -} \ No newline at end of file +}