mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
Mark static classes as static
This commit is contained in:
@@ -12,7 +12,7 @@ using Windows.System;
|
|||||||
|
|
||||||
namespace Microsoft.CmdPal.Ext.WindowWalker.Components;
|
namespace Microsoft.CmdPal.Ext.WindowWalker.Components;
|
||||||
|
|
||||||
internal sealed class ContextMenuHelper
|
internal static class ContextMenuHelper
|
||||||
{
|
{
|
||||||
internal static List<CommandContextItem> GetContextMenuResults(in WindowWalkerListItem listItem)
|
internal static List<CommandContextItem> GetContextMenuResults(in WindowWalkerListItem listItem)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Microsoft.CmdPal.Ext.WindowWalker.Components;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Class containing methods to control the live preview
|
/// Class containing methods to control the live preview
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal sealed class LivePreview
|
internal static class LivePreview
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Makes sure that a window is excluded from the live preview
|
/// Makes sure that a window is excluded from the live preview
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ using Microsoft.CommandPalette.Extensions.Toolkit;
|
|||||||
|
|
||||||
namespace Microsoft.CmdPal.Ext.WindowWalker;
|
namespace Microsoft.CmdPal.Ext.WindowWalker;
|
||||||
|
|
||||||
internal sealed class Icons
|
internal static class Icons
|
||||||
{
|
{
|
||||||
internal static IconInfo WindowWalkerIcon { get; } = IconHelpers.FromRelativePath("Assets\\WindowWalker.svg");
|
internal static IconInfo WindowWalkerIcon { get; } = IconHelpers.FromRelativePath("Assets\\WindowWalker.svg");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user