warnings: default values

This commit is contained in:
seraphima
2023-04-28 10:29:05 +02:00
parent f782ed00fa
commit d371888d33
3 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ namespace Peek.UI.Telemetry.Events
EventName = "Peek_Error";
}
public HResult HResult { get; set; } = 0;
public HResult HResult { get; set; }
public string Message { get; set; } = string.Empty;

View File

@@ -20,9 +20,9 @@ namespace Peek.UI.Telemetry.Events
public string FileExtension { get; set; } = string.Empty;
public bool IsAppToggledOn { get; set; } = false;
public bool IsAppToggledOn { get; set; }
public double HotKeytoVisibleTimeMs { get; set; } = 0;
public double HotKeytoVisibleTimeMs { get; set; }
public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServiceUsage;
}

View File

@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation
// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
@@ -18,7 +18,7 @@ namespace Peek.UI.Native
None = 0,
Init_NoRemapCLSID = 0x1,
Init_ByExeName = 0x2,
Open_ByExeName = 0x2,
Open_ByExeName = 0x3,
Init_DefaultToStar = 0x4,
Init_DefaultToFolder = 0x8,
NoUserSettings = 0x10,