File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
Flow.Launcher.Infrastructure/QuickSwitch/Interface Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
1212 /// </remarks>
1313 internal interface IQuickSwitchDialog : IDisposable
1414 {
15- internal IQuickSwitchDialogWindow DialogWindow { get ; }
15+ IQuickSwitchDialogWindow DialogWindow { get ; }
1616
17- internal bool CheckDialogWindow ( HWND hwnd ) ;
17+ bool CheckDialogWindow ( HWND hwnd ) ;
1818 }
1919}
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
55{
66 internal interface IQuickSwitchDialogWindow : IDisposable
77 {
8- internal HWND Handle { get ; }
8+ HWND Handle { get ; }
99
10- internal IQuickSwitchDialogWindowTab GetCurrentTab ( ) ;
10+ IQuickSwitchDialogWindowTab GetCurrentTab ( ) ;
1111 }
1212}
Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
55{
66 internal interface IQuickSwitchDialogWindowTab : IDisposable
77 {
8- internal HWND Handle { get ; }
8+ HWND Handle { get ; }
99
10- internal string GetCurrentFolder ( ) ;
10+ string GetCurrentFolder ( ) ;
1111
12- internal string GetCurrentFile ( ) ;
12+ string GetCurrentFile ( ) ;
1313
14- internal bool JumpFolder ( string path , bool auto ) ;
14+ bool JumpFolder ( string path , bool auto ) ;
1515
16- internal bool JumpFile ( string path ) ;
16+ bool JumpFile ( string path ) ;
1717
18- internal bool Open ( ) ;
18+ bool Open ( ) ;
1919 }
2020}
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
1212 /// </remarks>
1313 internal interface IQuickSwitchExplorer : IDisposable
1414 {
15- internal bool CheckExplorerWindow ( HWND foreground ) ;
15+ bool CheckExplorerWindow ( HWND foreground ) ;
1616
17- internal void RemoveExplorerWindow ( ) ;
17+ void RemoveExplorerWindow ( ) ;
1818
19- internal string GetExplorerPath ( ) ;
19+ string GetExplorerPath ( ) ;
2020 }
2121}
You can’t perform that action at this time.
0 commit comments