Resolving warnings and treating warnings as errors in WinUI project. (#824)
This commit is contained in:
@@ -198,7 +198,13 @@ public class StatePersistenceService : ObservableObject, IStatePersistanceServic
|
||||
}
|
||||
}
|
||||
|
||||
private void UpdateAppCoreWindowTitle() => WinoApplication.MainWindow.Title = CoreWindowTitle;
|
||||
private void UpdateAppCoreWindowTitle()
|
||||
{
|
||||
if (WinoApplication.MainWindow != null)
|
||||
{
|
||||
WinoApplication.MainWindow.Title = CoreWindowTitle;
|
||||
}
|
||||
}
|
||||
|
||||
private static CalendarDisplayType EnsureValidCalendarDisplayType(CalendarDisplayType displayType)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user