File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
RetailCoder.VBE/UI/Command Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
using Rubberduck . UI . Command . MenuItems . ParentMenus ;
2
- using System ;
3
- using System . Collections . Generic ;
4
- using System . Linq ;
5
- using System . Text ;
6
- using System . Threading . Tasks ;
7
2
using System . Windows . Input ;
8
3
9
4
namespace Rubberduck . UI . Command . MenuItems
10
5
{
11
6
class RegexAssistantCommandMenuItem : CommandMenuItemBase
12
7
{
13
- public RegexAssistantCommandMenuItem ( ICommand command ) : base ( command )
8
+ public RegexAssistantCommandMenuItem ( CommandBase command ) : base ( command )
14
9
{
15
10
}
16
11
Original file line number Diff line number Diff line change 1
- using Rubberduck . UI . RegexAssistant ;
1
+ using NLog ;
2
+ using Rubberduck . UI . RegexAssistant ;
2
3
using System . Runtime . InteropServices ;
3
4
4
5
namespace Rubberduck . UI . Command
@@ -9,7 +10,11 @@ namespace Rubberduck.UI.Command
9
10
[ ComVisible ( false ) ]
10
11
class RegexAssistantCommand : CommandBase
11
12
{
12
- public override void Execute ( object parameter )
13
+ public RegexAssistantCommand ( ) : base ( LogManager . GetCurrentClassLogger ( ) )
14
+ {
15
+ }
16
+
17
+ protected override void ExecuteImpl ( object parameter )
13
18
{
14
19
using ( var window = new RegexAssistantDialog ( ) )
15
20
{
You can’t perform that action at this time.
0 commit comments