mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
warnings: default values
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user