Skip to content

Commit 683d4fa

Browse files
committed
Fix namespaces
1 parent e24df4e commit 683d4fa

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Threading;
33
using Flow.Launcher.Infrastructure.Logger;
4-
using Flow.Launcher.Plugins;
4+
using Flow.Launcher.Plugin;
55
using Windows.Win32;
66
using Windows.Win32.Foundation;
77
using Windows.Win32.UI.WindowsAndMessaging;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22
using System.Runtime.InteropServices;
3-
using Flow.Launcher.Plugins;
3+
using Flow.Launcher.Plugin;
44
using Windows.Win32;
55
using Windows.Win32.System.Com;
66
using Windows.Win32.UI.Shell;

Flow.Launcher.Infrastructure/QuickSwitch/QuickSwitch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Flow.Launcher.Infrastructure.Logger;
99
using Flow.Launcher.Infrastructure.QuickSwitch.Models;
1010
using Flow.Launcher.Infrastructure.UserSettings;
11-
using Flow.Launcher.Plugins;
11+
using Flow.Launcher.Plugin;
1212
using NHotkey;
1313
using Windows.Win32;
1414
using Windows.Win32.Foundation;

Flow.Launcher.Plugin/Interfaces/IQuickSwitchDialog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
#nullable enable
44

5-
namespace Flow.Launcher.Plugins
5+
namespace Flow.Launcher.Plugin
66
{
77
/// <summary>
88
/// Interface for handling file dialog instances in QuickSwitch.
99
/// </summary>
10-
public interface IQuickSwitchDialog : IDisposable
10+
public interface IQuickSwitchDialog : IFeatures, IDisposable
1111
{
1212
/// <summary>
1313
/// Check if the foreground window is a file dialog instance.

Flow.Launcher.Plugin/Interfaces/IQuickSwitchExplorer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
#nullable enable
44

5-
namespace Flow.Launcher.Plugins
5+
namespace Flow.Launcher.Plugin
66
{
77
/// <summary>
88
/// Interface for handling file explorer instances in QuickSwitch.
99
/// </summary>
10-
public interface IQuickSwitchExplorer : IDisposable
10+
public interface IQuickSwitchExplorer : IFeatures, IDisposable
1111
{
1212
/// <summary>
1313
/// Check if the foreground window is a Windows Explorer instance.

0 commit comments

Comments
 (0)