Skip to content

Commit b690ca1

Browse files
committed
Improve code comments
1 parent b324718 commit b690ca1

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchDialog.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
77
/// Interface for handling File Dialog instances in QuickSwitch.
88
/// </summary>
99
/// <remarks>
10-
/// Add models in QuickSwitch/Models folder and implement this interface.
11-
/// Then add the instance in QuickSwitch._quickSwitchDialogs.
10+
/// Add models which implement IQuickSwitchDialog in folder QuickSwitch/Models.
11+
/// E.g. Models.WindowsDialog.
12+
/// Then add instances in QuickSwitch._quickSwitchDialogs.
1213
/// </remarks>
1314
internal interface IQuickSwitchDialog : IDisposable
1415
{

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchExplorer.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
77
/// Interface for handling Windows Explorer instances in QuickSwitch.
88
/// </summary>
99
/// <remarks>
10-
/// Add models in QuickSwitch/Models folder and implement this interface.
11-
/// Then add the instance in QuickSwitch._quickSwitchExplorers.
10+
/// Add models which implement IQuickSwitchExplorer in folder QuickSwitch/Models.
11+
/// E.g. Models.WindowsExplorer.
12+
/// Then add instances in QuickSwitch._quickSwitchExplorers.
1213
/// </remarks>
1314
internal interface IQuickSwitchExplorer : IDisposable
1415
{

Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsDialog.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88

99
namespace Flow.Launcher.Infrastructure.QuickSwitch.Models
1010
{
11+
/// <summary>
12+
/// Class for handling Windows File Dialog instances in QuickSwitch.
13+
/// </summary>
1114
internal class WindowsDialog : IQuickSwitchDialog
1215
{
13-
// The class name of a dialog window
1416
private const string WindowsDialogClassName = "#32770";
1517

1618
public IQuickSwitchDialogWindow DialogWindow { get; private set; }

Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsExplorer.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
namespace Flow.Launcher.Infrastructure.QuickSwitch.Models
1010
{
11+
/// <summary>
12+
/// Class for handling Windows Explorer instances in QuickSwitch.
13+
/// </summary>
1114
internal class WindowsExplorer : IQuickSwitchExplorer
1215
{
1316
private static readonly string ClassName = nameof(WindowsExplorer);

0 commit comments

Comments
 (0)