Skip to content

Commit

Permalink
fix: Adjust enums
Browse files Browse the repository at this point in the history
  • Loading branch information
ebariche committed Sep 21, 2021
1 parent d371268 commit 52fdbfc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Automation/Peers/PatternInterface.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Windows.UI.Xaml.Automation.Peers
{
public enum PatternInterface : uint
public enum PatternInterface
{
Invoke = 0,
Selection = 1,
Expand Down
16 changes: 8 additions & 8 deletions src/Uno.UWP/UI/Core/CoreVirtualKeyStates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
namespace Windows.UI.Core
{
/// <summary>
/// Specifies flags for indicating the possible states of a virtual key.
/// </summary>
/// Specifies flags for indicating the possible states of a virtual key.
/// </summary>
[Flags]
public enum CoreVirtualKeyStates : uint
{
/// <summary>
/// The key is up or in no specific state.
/// </summary>
/// The key is up or in no specific state.
/// </summary>
None = 0U,
/// <summary>
/// The key is pressed down for the input event.
/// </summary>
/// The key is pressed down for the input event.
/// </summary>
Down = 1U,
/// <summary>
/// The key is in a toggled or modified state (for example, Caps Lock) for the input event.
/// </summary>
/// The key is in a toggled or modified state (for example, Caps Lock) for the input event.
/// </summary>
Locked = 2U
}
}

0 comments on commit 52fdbfc

Please sign in to comment.